aboutsummaryrefslogtreecommitdiff
path: root/node_modules/es5-ext/array/#/map
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
commitcc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (patch)
tree92c5d88706a6ffc654d1b133618d357890e7096b /node_modules/es5-ext/array/#/map
parent3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff)
remove node_modules
Diffstat (limited to 'node_modules/es5-ext/array/#/map')
-rw-r--r--node_modules/es5-ext/array/#/map/implement.js8
-rw-r--r--node_modules/es5-ext/array/#/map/index.js4
-rw-r--r--node_modules/es5-ext/array/#/map/is-implemented.js8
-rw-r--r--node_modules/es5-ext/array/#/map/shim.js21
4 files changed, 0 insertions, 41 deletions
diff --git a/node_modules/es5-ext/array/#/map/implement.js b/node_modules/es5-ext/array/#/map/implement.js
deleted file mode 100644
index a6d1d9001..000000000
--- a/node_modules/es5-ext/array/#/map/implement.js
+++ /dev/null
@@ -1,8 +0,0 @@
-"use strict";
-
-if (!require("./is-implemented")()) {
- Object.defineProperty(Array.prototype, "map", { value: require("./shim"),
- configurable: true,
-enumerable: false,
-writable: true });
-}
diff --git a/node_modules/es5-ext/array/#/map/index.js b/node_modules/es5-ext/array/#/map/index.js
deleted file mode 100644
index 101c0649e..000000000
--- a/node_modules/es5-ext/array/#/map/index.js
+++ /dev/null
@@ -1,4 +0,0 @@
-"use strict";
-
-module.exports = require("./is-implemented")()
- ? Array.prototype.map : require("./shim");
diff --git a/node_modules/es5-ext/array/#/map/is-implemented.js b/node_modules/es5-ext/array/#/map/is-implemented.js
deleted file mode 100644
index 24ab9084f..000000000
--- a/node_modules/es5-ext/array/#/map/is-implemented.js
+++ /dev/null
@@ -1,8 +0,0 @@
-"use strict";
-
-var identity = require("../../../function/identity")
- , SubArray = require("../../_sub-array-dummy-safe");
-
-module.exports = function () {
- return (new SubArray()).map(identity) instanceof SubArray;
-};
diff --git a/node_modules/es5-ext/array/#/map/shim.js b/node_modules/es5-ext/array/#/map/shim.js
deleted file mode 100644
index 6d8cc1fb6..000000000
--- a/node_modules/es5-ext/array/#/map/shim.js
+++ /dev/null
@@ -1,21 +0,0 @@
-"use strict";
-
-var isPlainArray = require("../../is-plain-array")
- , callable = require("../../../object/valid-callable")
-
- , isArray = Array.isArray, map = Array.prototype.map
- , forEach = Array.prototype.forEach, call = Function.prototype.call;
-
-module.exports = function (callbackFn/*, thisArg*/) {
- var result, thisArg;
- if (!this || !isArray(this) || isPlainArray(this)) {
- return map.apply(this, arguments);
- }
- callable(callbackFn);
- thisArg = arguments[1];
- result = new this.constructor(this.length);
- forEach.call(this, function (val, i, self) {
- result[i] = call.call(callbackFn, thisArg, val, i, self);
- });
- return result;
-};