Updated the files.
This commit is contained in:
parent
1553e6b971
commit
753967d4f5
23418 changed files with 3784666 additions and 0 deletions
10
my-app/node_modules/rxjs/dist/esm5/internal/util/mapOneOrManyArgs.js
generated
vendored
Executable file
10
my-app/node_modules/rxjs/dist/esm5/internal/util/mapOneOrManyArgs.js
generated
vendored
Executable file
|
|
@ -0,0 +1,10 @@
|
|||
import { __read, __spreadArray } from "tslib";
|
||||
import { map } from "../operators/map";
|
||||
var isArray = Array.isArray;
|
||||
function callOrApply(fn, args) {
|
||||
return isArray(args) ? fn.apply(void 0, __spreadArray([], __read(args))) : fn(args);
|
||||
}
|
||||
export function mapOneOrManyArgs(fn) {
|
||||
return map(function (args) { return callOrApply(fn, args); });
|
||||
}
|
||||
//# sourceMappingURL=mapOneOrManyArgs.js.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue