diff options
Diffstat (limited to 'tools/eslint/node_modules/lodash/split.js')
-rw-r--r-- | tools/eslint/node_modules/lodash/split.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/eslint/node_modules/lodash/split.js b/tools/eslint/node_modules/lodash/split.js new file mode 100644 index 0000000000..6fe9ed1021 --- /dev/null +++ b/tools/eslint/node_modules/lodash/split.js @@ -0,0 +1,24 @@ +var toString = require('./toString'); + +/** + * Splits `string` by `separator`. + * + * **Note:** This method is based on [`String#split`](https://mdn.io/String/split). + * + * @static + * @memberOf _ + * @category String + * @param {string} [string=''] The string to split. + * @param {RegExp|string} separator The separator pattern to split by. + * @param {number} [limit] The length to truncate results to. + * @returns {Array} Returns the new array of string segments. + * @example + * + * _.split('a-b-c', '-', 2); + * // => ['a', 'b'] + */ +function split(string, separator, limit) { + return toString(string).split(separator, limit); +} + +module.exports = split; |