Remove references to _.

This commit is contained in:
John-David Dalton
2017-01-09 17:38:33 -08:00
parent 65654f8f9e
commit 77cc37ba49
410 changed files with 875 additions and 1157 deletions

View File

@@ -16,7 +16,6 @@ const MAX_ARRAY_LENGTH = 4294967295;
* [`String#split`](https://mdn.io/String/split).
*
* @static
* @memberOf _
* @since 4.0.0
* @category String
* @param {string} [string=''] The string to split.
@@ -25,7 +24,7 @@ const MAX_ARRAY_LENGTH = 4294967295;
* @returns {Array} Returns the string segments.
* @example
*
* _.split('a-b-c', '-', 2);
* split('a-b-c', '-', 2);
* // => ['a', 'b']
*/
function split(string, separator, limit) {