initial commit - far from runnable
This commit is contained in:
commit
db057ce342
8614 changed files with 1032171 additions and 0 deletions
15
node_modules/rxjs/dist/cjs/internal/operators/map.js
generated
vendored
Normal file
15
node_modules/rxjs/dist/cjs/internal/operators/map.js
generated
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.map = void 0;
|
||||
var lift_1 = require("../util/lift");
|
||||
var OperatorSubscriber_1 = require("./OperatorSubscriber");
|
||||
function map(project, thisArg) {
|
||||
return lift_1.operate(function (source, subscriber) {
|
||||
var index = 0;
|
||||
source.subscribe(OperatorSubscriber_1.createOperatorSubscriber(subscriber, function (value) {
|
||||
subscriber.next(project.call(thisArg, value, index++));
|
||||
}));
|
||||
});
|
||||
}
|
||||
exports.map = map;
|
||||
//# sourceMappingURL=map.js.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue