UNPKG

391 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = Stream;
7/** @license MIT License (c) copyright 2010-2016 original author or authors */
8/** @author Brian Cavalier */
9/** @author John Hann */
10
11function Stream(source) {
12 this.source = source;
13}
14
15Stream.prototype.run = function (sink, scheduler) {
16 return this.source.run(sink, scheduler);
17};
\No newline at end of file