Skip to content

Commit

Permalink
fix(predicates): isInRange is correctly exported
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-molak committed Feb 20, 2018
1 parent 076d0e2 commit 44866bf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion spec/predicates/isEqualTo.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'mocha';
import { given } from 'mocha-testdata';

import { check, isEqualTo, TinyType, TinyTypeOf } from '../../src';
import { check, isEqualTo, TinyTypeOf } from '../../src';
import { expect } from '../expect';

describe('predicates', () => {
Expand Down
3 changes: 1 addition & 2 deletions spec/predicates/isInRange.spec.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import 'mocha';
import { given } from 'mocha-testdata';

import { check, TinyType } from '../../src';
import { check, isInRange, TinyType } from '../../src';
import { expect } from '../expect';
import { isInRange } from '../../src/predicates/isInRange';

describe('predicates', () => {

Expand Down
1 change: 1 addition & 0 deletions src/predicates/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export * from './isDefined';
export * from './isEqualTo';
export * from './isGreaterThan';
export * from './isGreaterThanOrEqualTo';
export * from './isInRange';
export * from './isInteger';
export * from './isLessThan';
export * from './isLessThanOrEqualTo';
Expand Down

0 comments on commit 44866bf

Please sign in to comment.