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

7
pad.js
View File

@@ -12,7 +12,6 @@ const nativeFloor = Math.floor;
* Padding characters are truncated if they can't be evenly divided by `length`.
*
* @static
* @memberOf _
* @since 3.0.0
* @category String
* @param {string} [string=''] The string to pad.
@@ -21,13 +20,13 @@ const nativeFloor = Math.floor;
* @returns {string} Returns the padded string.
* @example
*
* _.pad('abc', 8);
* pad('abc', 8);
* // => ' abc '
*
* _.pad('abc', 8, '_-');
* pad('abc', 8, '_-');
* // => '_-abc_-_'
*
* _.pad('abc', 3);
* pad('abc', 3);
* // => 'abc'
*/
function pad(string, length, chars) {