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

3
at.js
View File

@@ -4,7 +4,6 @@ import baseAt from './_baseAt.js';
* Creates an array of values corresponding to `paths` of `object`.
*
* @static
* @memberOf _
* @since 1.0.0
* @category Object
* @param {Object} object The object to iterate over.
@@ -14,7 +13,7 @@ import baseAt from './_baseAt.js';
*
* var object = { 'a': [{ 'b': { 'c': 3 } }, 4] };
*
* _.at(object, ['a[0].b.c', 'a[1]']);
* at(object, ['a[0].b.c', 'a[1]']);
* // => [3, 4]
*/
function at(...paths) {