Skip to content

Commit

Permalink
feat(reorganize): export noop and identity from rxjs
Browse files Browse the repository at this point in the history
  • Loading branch information
benlesh committed Jan 12, 2018
1 parent ed2f637 commit 810c4d0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions spec/index-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,7 @@ describe('index', () => {

it('should export the pipe utility', () => {
expect(index.pipe).to.exist;
expect(index.noop).to.exist;
expect(index.identity).to.exist;
});
});
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ export { Notification } from './internal/Notification';

/* Utils */
export { pipe } from './util/pipe';
export { noop } from './util/noop';
export { identity } from './util/identity';

/* Types */
export * from './internal/types';

0 comments on commit 810c4d0

Please sign in to comment.