Skip to content

Commit

Permalink
feat(reorganize): export the pipe utility function from rxjs
Browse files Browse the repository at this point in the history
  • Loading branch information
benlesh committed Jan 12, 2018
1 parent 8809b48 commit 4574310
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions spec/index-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,4 +147,8 @@ describe('index', () => {
it('should export Notification', () => {
expect(index.Notification).to.exist;
});

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

/* Notification */
export { Notification } from './Notification';

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

0 comments on commit 4574310

Please sign in to comment.