diff options
Diffstat (limited to 'tools/eslint/node_modules/repeat-string/index.js')
-rw-r--r-- | tools/eslint/node_modules/repeat-string/index.js | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/tools/eslint/node_modules/repeat-string/index.js b/tools/eslint/node_modules/repeat-string/index.js deleted file mode 100644 index c781229b2c..0000000000 --- a/tools/eslint/node_modules/repeat-string/index.js +++ /dev/null @@ -1,66 +0,0 @@ -/*! - * repeat-string <https://github.com/jonschlinkert/repeat-string> - * - * Copyright (c) 2014-2015, Jon Schlinkert. - * Licensed under the MIT License. - */ - -'use strict'; - -/** - * Expose `repeat` - */ - -module.exports = repeat; - -/** - * Repeat the given `string` the specified `number` - * of times. - * - * **Example:** - * - * ```js - * var repeat = require('repeat-string'); - * repeat('A', 5); - * //=> AAAAA - * ``` - * - * @param {String} `string` The string to repeat - * @param {Number} `number` The number of times to repeat the string - * @return {String} Repeated string - * @api public - */ - -function repeat(str, num) { - if (typeof str !== 'string') { - throw new TypeError('repeat-string expects a string.'); - } - - if (num === 1) return str; - if (num === 2) return str + str; - - var max = str.length * num; - if (cache !== str || typeof cache === 'undefined') { - cache = str; - res = ''; - } - - while (max > res.length && num > 0) { - if (num & 1) { - res += str; - } - - num >>= 1; - if (!num) break; - str += str; - } - - return res.substr(0, max); -} - -/** - * Results cache - */ - -var res = ''; -var cache; |