Skip to content

Commit

Permalink
fix: export reader functions (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickmichalina authored Aug 12, 2018
1 parent b99b28d commit 5035988
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export { monad, IMonad } from './monad'
export { maybe, IMaybe, IMaybePattern } from './maybe'
export { either, IEither, IEitherPattern } from './either'
export { either, IEither, IEitherPattern } from './either'
export { reader, IReader } from './reader'
2 changes: 1 addition & 1 deletion test/reader.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { reader } from '../src/reader'
import { reader } from '../src'

describe('reader', () => {
it('should of', () => {
Expand Down

0 comments on commit 5035988

Please sign in to comment.