Skip to content

Commit

Permalink
refactor(KitchenSink): add first, ignoreElements to interface
Browse files Browse the repository at this point in the history
  • Loading branch information
kwonoj authored and benlesh committed Oct 1, 2015
1 parent ef3cbec commit 8342430
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Rx.KitchenSink.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,15 @@ observableProto.findIndex = findIndex;
import _finally from './operators/finally';
observableProto.finally = _finally;

import first from './operators/first';
observableProto.first = first;

import groupBy from './operators/groupBy';
observableProto.groupBy = groupBy;

import ignoreElements from './operators/ignoreElements';
observableProto.ignoreElements = ignoreElements;

import isEmpty from './operators/isEmpty';
observableProto.isEmpty = isEmpty;

Expand Down

0 comments on commit 8342430

Please sign in to comment.