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

@@ -3,11 +3,10 @@ import keysIn from './keysIn.js';
/**
* Creates an array of own and inherited enumerable string keyed-value pairs
* for `object` which can be consumed by `_.fromPairs`. If `object` is a map
* for `object` which can be consumed by `fromPairs`. If `object` is a map
* or set, its entries are returned.
*
* @static
* @memberOf _
* @since 4.0.0
* @alias entriesIn
* @category Object
@@ -22,7 +21,7 @@ import keysIn from './keysIn.js';
*
* Foo.prototype.c = 3;
*
* _.toPairsIn(new Foo);
* toPairsIn(new Foo);
* // => [['a', 1], ['b', 2], ['c', 3]] (iteration order is not guaranteed)
*/
const toPairsIn = createToPairs(keysIn);