From cc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Wed, 27 Mar 2019 21:01:33 +0100 Subject: remove node_modules --- node_modules/es5-ext/string/#/repeat/implement.js | 9 -------- node_modules/es5-ext/string/#/repeat/index.js | 5 ----- .../es5-ext/string/#/repeat/is-implemented.js | 8 -------- node_modules/es5-ext/string/#/repeat/shim.js | 24 ---------------------- 4 files changed, 46 deletions(-) delete mode 100644 node_modules/es5-ext/string/#/repeat/implement.js delete mode 100644 node_modules/es5-ext/string/#/repeat/index.js delete mode 100644 node_modules/es5-ext/string/#/repeat/is-implemented.js delete mode 100644 node_modules/es5-ext/string/#/repeat/shim.js (limited to 'node_modules/es5-ext/string/#/repeat') diff --git a/node_modules/es5-ext/string/#/repeat/implement.js b/node_modules/es5-ext/string/#/repeat/implement.js deleted file mode 100644 index 7066b7b49..000000000 --- a/node_modules/es5-ext/string/#/repeat/implement.js +++ /dev/null @@ -1,9 +0,0 @@ -"use strict"; - -if (!require("./is-implemented")()) { - Object.defineProperty(String.prototype, "repeat", - { value: require("./shim"), -configurable: true, -enumerable: false, - writable: true }); -} diff --git a/node_modules/es5-ext/string/#/repeat/index.js b/node_modules/es5-ext/string/#/repeat/index.js deleted file mode 100644 index 99d44b2ef..000000000 --- a/node_modules/es5-ext/string/#/repeat/index.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; - -module.exports = require("./is-implemented")() - ? String.prototype.repeat - : require("./shim"); diff --git a/node_modules/es5-ext/string/#/repeat/is-implemented.js b/node_modules/es5-ext/string/#/repeat/is-implemented.js deleted file mode 100644 index e8e02409c..000000000 --- a/node_modules/es5-ext/string/#/repeat/is-implemented.js +++ /dev/null @@ -1,8 +0,0 @@ -"use strict"; - -var str = "foo"; - -module.exports = function () { - if (typeof str.repeat !== "function") return false; - return str.repeat(2) === "foofoo"; -}; diff --git a/node_modules/es5-ext/string/#/repeat/shim.js b/node_modules/es5-ext/string/#/repeat/shim.js deleted file mode 100644 index ac259a83b..000000000 --- a/node_modules/es5-ext/string/#/repeat/shim.js +++ /dev/null @@ -1,24 +0,0 @@ -// Thanks -// @rauchma http://www.2ality.com/2014/01/efficient-string-repeat.html -// @mathiasbynens https://github.com/mathiasbynens/String.prototype.repeat/blob/4a4b567def/repeat.js - -"use strict"; - -var value = require("../../../object/valid-value") - , toInteger = require("../../../number/to-integer"); - -module.exports = function (count) { - var str = String(value(this)), result; - count = toInteger(count); - if (count < 0) throw new RangeError("Count must be >= 0"); - if (!isFinite(count)) throw new RangeError("Count must be < ∞"); - - result = ""; - while (count) { - if (count % 2) result += str; - if (count > 1) str += str; - // eslint-disable-next-line no-bitwise - count >>= 1; - } - return result; -}; -- cgit v1.2.3