diff options
Diffstat (limited to 'node_modules/rxjs/dist/esm5/internal/operators/timeInterval.js')
| -rw-r--r-- | node_modules/rxjs/dist/esm5/internal/operators/timeInterval.js | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/node_modules/rxjs/dist/esm5/internal/operators/timeInterval.js b/node_modules/rxjs/dist/esm5/internal/operators/timeInterval.js deleted file mode 100644 index a0f655e..0000000 --- a/node_modules/rxjs/dist/esm5/internal/operators/timeInterval.js +++ /dev/null @@ -1,24 +0,0 @@ -import { asyncScheduler } from '../scheduler/async'; -import { operate } from '../util/lift'; -import { createOperatorSubscriber } from './OperatorSubscriber'; -export function timeInterval(scheduler) { - if (scheduler === void 0) { scheduler = asyncScheduler; } - return operate(function (source, subscriber) { - var last = scheduler.now(); - source.subscribe(createOperatorSubscriber(subscriber, function (value) { - var now = scheduler.now(); - var interval = now - last; - last = now; - subscriber.next(new TimeInterval(value, interval)); - })); - }); -} -var TimeInterval = (function () { - function TimeInterval(value, interval) { - this.value = value; - this.interval = interval; - } - return TimeInterval; -}()); -export { TimeInterval }; -//# sourceMappingURL=timeInterval.js.map
\ No newline at end of file |
