Skip to content

Commit

Permalink
refactor(main): export fromPromise
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharmath committed Oct 16, 2016
1 parent 18c2366 commit f4a8a66
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main.ts
Expand Up @@ -8,6 +8,7 @@ import {Curry} from './lib/Curry'
import {filter as _filter} from './operators/Filter'
import {fromArray as _fromArray} from './sources/FromArray'
import {fromDOM as _fromDOM} from './sources/FromDOM'
import {fromPromise as _fromPromise} from './sources/FromPromise'
import {interval as _interval} from './sources/Interval'
import {join as _join} from './operators/Join'
import {map as _map} from './operators/Map'
Expand All @@ -30,3 +31,4 @@ export const skipRepeats = Curry(_skipRepeats)
export const slice = Curry(_slice)
export const switchLatest = Curry(_switchLatest)
export const tap = Curry(_tap)
export const fromPromise = Curry(_fromPromise)

0 comments on commit f4a8a66

Please sign in to comment.