UNPKG

kefir

Version:

Reactive Programming library for JavaScript inspired by Bacon.js and RxJS with focus on high performance and low memory usage

17 lines (12 loc) 241 B
import {inherit} from './utils/objects' import Observable from './observable' function Stream() { Observable.call(this) } inherit(Stream, Observable, { _name: 'stream', getType() { return 'stream' }, }) export default Stream