aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/rxjs/dist/cjs/internal/observable/range.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/rxjs/dist/cjs/internal/observable/range.js')
-rw-r--r--node_modules/rxjs/dist/cjs/internal/observable/range.js39
1 files changed, 0 insertions, 39 deletions
diff --git a/node_modules/rxjs/dist/cjs/internal/observable/range.js b/node_modules/rxjs/dist/cjs/internal/observable/range.js
deleted file mode 100644
index be91661..0000000
--- a/node_modules/rxjs/dist/cjs/internal/observable/range.js
+++ /dev/null
@@ -1,39 +0,0 @@
-"use strict";
-Object.defineProperty(exports, "__esModule", { value: true });
-exports.range = void 0;
-var Observable_1 = require("../Observable");
-var empty_1 = require("./empty");
-function range(start, count, scheduler) {
- if (count == null) {
- count = start;
- start = 0;
- }
- if (count <= 0) {
- return empty_1.EMPTY;
- }
- var end = count + start;
- return new Observable_1.Observable(scheduler
- ?
- function (subscriber) {
- var n = start;
- return scheduler.schedule(function () {
- if (n < end) {
- subscriber.next(n++);
- this.schedule();
- }
- else {
- subscriber.complete();
- }
- });
- }
- :
- function (subscriber) {
- var n = start;
- while (n < end && !subscriber.closed) {
- subscriber.next(n++);
- }
- subscriber.complete();
- });
-}
-exports.range = range;
-//# sourceMappingURL=range.js.map \ No newline at end of file
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage