diff options
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/rxjs/internal/operators/min.js')
-rw-r--r-- | sandbox/testAppNevena/Front/node_modules/rxjs/internal/operators/min.js | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/internal/operators/min.js b/sandbox/testAppNevena/Front/node_modules/rxjs/internal/operators/min.js deleted file mode 100644 index 780cf3ed..00000000 --- a/sandbox/testAppNevena/Front/node_modules/rxjs/internal/operators/min.js +++ /dev/null @@ -1,11 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -var reduce_1 = require("./reduce"); -function min(comparer) { - var min = (typeof comparer === 'function') - ? function (x, y) { return comparer(x, y) < 0 ? x : y; } - : function (x, y) { return x < y ? x : y; }; - return reduce_1.reduce(min); -} -exports.min = min; -//# sourceMappingURL=min.js.map
\ No newline at end of file |