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

@@ -7,7 +7,6 @@ import toString from './toString.js';
* Checks if `string` ends with the given target string.
*
* @static
* @memberOf _
* @since 3.0.0
* @category String
* @param {string} [string=''] The string to inspect.
@@ -17,13 +16,13 @@ import toString from './toString.js';
* else `false`.
* @example
*
* _.endsWith('abc', 'c');
* endsWith('abc', 'c');
* // => true
*
* _.endsWith('abc', 'b');
* endsWith('abc', 'b');
* // => false
*
* _.endsWith('abc', 'b', 2);
* endsWith('abc', 'b', 2);
* // => true
*/
function endsWith(string, target, position) {