summaryrefslogtreecommitdiff
path: root/alarm/node_modules/lodash/repeat.js
diff options
context:
space:
mode:
Diffstat (limited to 'alarm/node_modules/lodash/repeat.js')
-rw-r--r--alarm/node_modules/lodash/repeat.js37
1 files changed, 0 insertions, 37 deletions
diff --git a/alarm/node_modules/lodash/repeat.js b/alarm/node_modules/lodash/repeat.js
deleted file mode 100644
index f4d8c69..0000000
--- a/alarm/node_modules/lodash/repeat.js
+++ /dev/null
@@ -1,37 +0,0 @@
-var baseRepeat = require('./_baseRepeat'),
- isIterateeCall = require('./_isIterateeCall'),
- toInteger = require('./toInteger'),
- toString = require('./toString');
-
-/**
- * Repeats the given string `n` times.
- *
- * @static
- * @memberOf _
- * @since 3.0.0
- * @category String
- * @param {string} [string=''] The string to repeat.
- * @param {number} [n=1] The number of times to repeat the string.
- * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.
- * @returns {string} Returns the repeated string.
- * @example
- *
- * _.repeat('*', 3);
- * // => '***'
- *
- * _.repeat('abc', 2);
- * // => 'abcabc'
- *
- * _.repeat('abc', 0);
- * // => ''
- */
-function repeat(string, n, guard) {
- if ((guard ? isIterateeCall(string, n, guard) : n === undefined)) {
- n = 1;
- } else {
- n = toInteger(n);
- }
- return baseRepeat(toString(string), n);
-}
-
-module.exports = repeat;