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

@@ -13,20 +13,19 @@ const setTag = '[object Set]';
* values or the number of own enumerable string keyed properties for objects.
*
* @static
* @memberOf _
* @since 0.1.0
* @category Collection
* @param {Array|Object|string} collection The collection to inspect.
* @returns {number} Returns the collection size.
* @example
*
* _.size([1, 2, 3]);
* size([1, 2, 3]);
* // => 3
*
* _.size({ 'a': 1, 'b': 2 });
* size({ 'a': 1, 'b': 2 });
* // => 2
*
* _.size('pebbles');
* size('pebbles');
* // => 7
*/
function size(collection) {