aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/internals/string-repeat.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/core-js/internals/string-repeat.js')
-rw-r--r--node_modules/core-js/internals/string-repeat.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/node_modules/core-js/internals/string-repeat.js b/node_modules/core-js/internals/string-repeat.js
deleted file mode 100644
index ab872b2..0000000
--- a/node_modules/core-js/internals/string-repeat.js
+++ /dev/null
@@ -1,14 +0,0 @@
-'use strict';
-var toInteger = require('../internals/to-integer');
-var requireObjectCoercible = require('../internals/require-object-coercible');
-
-// `String.prototype.repeat` method implementation
-// https://tc39.github.io/ecma262/#sec-string.prototype.repeat
-module.exports = ''.repeat || function repeat(count) {
- var str = String(requireObjectCoercible(this));
- var result = '';
- var n = toInteger(count);
- if (n < 0 || n == Infinity) throw RangeError('Wrong number of repetitions');
- for (;n > 0; (n >>>= 1) && (str += str)) if (n & 1) result += str;
- return result;
-};