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

@@ -8,7 +8,6 @@ import toString from './toString.js';
* characters are truncated if they exceed `length`.
*
* @static
* @memberOf _
* @since 4.0.0
* @category String
* @param {string} [string=''] The string to pad.
@@ -17,13 +16,13 @@ import toString from './toString.js';
* @returns {string} Returns the padded string.
* @example
*
* _.padEnd('abc', 6);
* padEnd('abc', 6);
* // => 'abc '
*
* _.padEnd('abc', 6, '_-');
* padEnd('abc', 6, '_-');
* // => 'abc_-_'
*
* _.padEnd('abc', 3);
* padEnd('abc', 3);
* // => 'abc'
*/
function padEnd(string, length, chars) {