|
16 | 16 | * [`_.compact`](#_compactarray)
|
17 | 17 | * [`_.compose`](#_composefunc1-func2-)
|
18 | 18 | * [`_.contains`](#_containscollection-target)
|
19 |
| -* [`_.countBy`](#_countbycollection-callback|property--thisarg) |
| 19 | +* [`_.countBy`](#_countbycollection-callbackproperty--thisarg) |
20 | 20 | * [`_.debounce`](#_debouncefunc-wait-immediate)
|
21 | 21 | * [`_.defaults`](#_defaultsobject--default1-default2-)
|
22 | 22 | * [`_.defer`](#_deferfunc--arg1-arg2-)
|
23 | 23 | * [`_.delay`](#_delayfunc-wait--arg1-arg2-)
|
24 | 24 | * [`_.difference`](#_differencearray--array1-array2-)
|
25 |
| -* [`_.drop`](#_dropobject-callback|-prop1-prop2--thisarg) |
| 25 | +* [`_.drop`](#_dropobject-callback-prop1-prop2--thisarg) |
26 | 26 | * [`_.escape`](#_escapestring)
|
27 | 27 | * [`_.every`](#_everycollection--callbackidentity-thisarg)
|
28 | 28 | * [`_.extend`](#_extendobject--source1-source2-)
|
|
34 | 34 | * [`_.forIn`](#_forinobject-callback--thisarg)
|
35 | 35 | * [`_.forOwn`](#_forownobject-callback--thisarg)
|
36 | 36 | * [`_.functions`](#_functionsobject)
|
37 |
| -* [`_.groupBy`](#_groupbycollection-callback|property--thisarg) |
| 37 | +* [`_.groupBy`](#_groupbycollection-callbackproperty--thisarg) |
38 | 38 | * [`_.has`](#_hasobject-property)
|
39 | 39 | * [`_.identity`](#_identityvalue)
|
40 | 40 | * [`_.indexOf`](#_indexofarray-value--fromindex0)
|
|
69 | 69 | * [`_.noConflict`](#_noconflict)
|
70 | 70 | * [`_.once`](#_oncefunc)
|
71 | 71 | * [`_.partial`](#_partialfunc--arg1-arg2-)
|
72 |
| -* [`_.pick`](#_pickobject-callback|-prop1-prop2--thisarg) |
| 72 | +* [`_.pick`](#_pickobject-callback-prop1-prop2--thisarg) |
73 | 73 | * [`_.pluck`](#_pluckcollection-property)
|
74 | 74 | * [`_.range`](#_rangestart0-end--step1)
|
75 | 75 | * [`_.reduce`](#_reducecollection-callback--accumulator-thisarg)
|
|
80 | 80 | * [`_.shuffle`](#_shufflearray)
|
81 | 81 | * [`_.size`](#_sizevalue)
|
82 | 82 | * [`_.some`](#_somecollection--callbackidentity-thisarg)
|
83 |
| -* [`_.sortBy`](#_sortbycollection-callback|property--thisarg) |
| 83 | +* [`_.sortBy`](#_sortbycollection-callbackproperty--thisarg) |
84 | 84 | * [`_.sortedIndex`](#_sortedindexarray-value--callbackidentity-thisarg)
|
85 | 85 | * [`_.tap`](#_tapvalue-interceptor)
|
86 | 86 | * [`_.template`](#_templatetext-data-options)
|
@@ -440,8 +440,8 @@ _.contains('curly', 'ur');
|
440 | 440 |
|
441 | 441 | <!-- div -->
|
442 | 442 |
|
443 |
| -### <a id="_countbycollection-callback|property--thisarg"></a>`_.countBy(collection, callback|property [, thisArg])` |
444 |
| -<a href="#_countbycollection-callback|property--thisarg">#</a> [Ⓢ](https://github.com/bestiejs/lodash/blob/master/lodash.js#L1997 "View in source") [Ⓣ][1] |
| 443 | +### <a id="_countbycollection-callbackproperty--thisarg"></a>`_.countBy(collection, callback|property [, thisArg])` |
| 444 | +<a href="#_countbycollection-callbackproperty--thisarg">#</a> [Ⓢ](https://github.com/bestiejs/lodash/blob/master/lodash.js#L1997 "View in source") [Ⓣ][1] |
445 | 445 |
|
446 | 446 | Creates an object composed of keys returned from running each element of `collection` through a `callback`. The corresponding value of each key is the number of times the key was returned by `callback`. The `callback` is bound to `thisArg` and invoked with `3` arguments; *(value, index|key, collection)*. The `callback` argument may also be the name of a property to count by *(e.g. 'length')*.
|
447 | 447 |
|
@@ -601,8 +601,8 @@ _.difference([1, 2, 3, 4, 5], [5, 2, 10]);
|
601 | 601 |
|
602 | 602 | <!-- div -->
|
603 | 603 |
|
604 |
| -### <a id="_dropobject-callback|-prop1-prop2--thisarg"></a>`_.drop(object, callback|[prop1, prop2, ..., thisArg])` |
605 |
| -<a href="#_dropobject-callback|-prop1-prop2--thisarg">#</a> [Ⓢ](https://github.com/bestiejs/lodash/blob/master/lodash.js#L1201 "View in source") [Ⓣ][1] |
| 604 | +### <a id="_dropobject-callback-prop1-prop2--thisarg"></a>`_.drop(object, callback|[prop1, prop2, ..., thisArg])` |
| 605 | +<a href="#_dropobject-callback-prop1-prop2--thisarg">#</a> [Ⓢ](https://github.com/bestiejs/lodash/blob/master/lodash.js#L1201 "View in source") [Ⓣ][1] |
606 | 606 |
|
607 | 607 | Creates a shallow clone of `object` excluding the specified properties. Property names may be specified as individual arguments or as arrays of property names. If `callback` is passed, it will be executed for each property in the `object`, dropping the properties `callback` returns truthy for. The `callback` is bound to `thisArg` and invoked with `3` arguments; *(value, key, object)*.
|
608 | 608 |
|
@@ -930,8 +930,8 @@ _.functions(_);
|
930 | 930 |
|
931 | 931 | <!-- div -->
|
932 | 932 |
|
933 |
| -### <a id="_groupbycollection-callback|property--thisarg"></a>`_.groupBy(collection, callback|property [, thisArg])` |
934 |
| -<a href="#_groupbycollection-callback|property--thisarg">#</a> [Ⓢ](https://github.com/bestiejs/lodash/blob/master/lodash.js#L2113 "View in source") [Ⓣ][1] |
| 933 | +### <a id="_groupbycollection-callbackproperty--thisarg"></a>`_.groupBy(collection, callback|property [, thisArg])` |
| 934 | +<a href="#_groupbycollection-callbackproperty--thisarg">#</a> [Ⓢ](https://github.com/bestiejs/lodash/blob/master/lodash.js#L2113 "View in source") [Ⓣ][1] |
935 | 935 |
|
936 | 936 | Creates an object composed of keys returned from running each element of `collection` through a `callback`. The corresponding value of each key is an array of elements passed to `callback` that returned the key. The `callback` is bound to `thisArg` and invoked with `3` arguments; *(value, index|key, collection)*. The `callback` argument may also be the name of a property to count by *(e.g. 'length')*.
|
937 | 937 |
|
@@ -1881,8 +1881,8 @@ hi('moe');
|
1881 | 1881 |
|
1882 | 1882 | <!-- div -->
|
1883 | 1883 |
|
1884 |
| -### <a id="_pickobject-callback|-prop1-prop2--thisarg"></a>`_.pick(object, callback|[prop1, prop2, ..., thisArg])` |
1885 |
| -<a href="#_pickobject-callback|-prop1-prop2--thisarg">#</a> [Ⓢ](https://github.com/bestiejs/lodash/blob/master/lodash.js#L1862 "View in source") [Ⓣ][1] |
| 1884 | +### <a id="_pickobject-callback-prop1-prop2--thisarg"></a>`_.pick(object, callback|[prop1, prop2, ..., thisArg])` |
| 1885 | +<a href="#_pickobject-callback-prop1-prop2--thisarg">#</a> [Ⓢ](https://github.com/bestiejs/lodash/blob/master/lodash.js#L1862 "View in source") [Ⓣ][1] |
1886 | 1886 |
|
1887 | 1887 | Creates a shallow clone of `object` composed of the specified properties. Property names may be specified as individual arguments or as arrays of property names. If `callback` is passed, it will be executed for each property in the `object`, picking the properties `callback` returns truthy for. The `callback` is bound to `thisArg` and invoked with `3` arguments; *(value, key, object)*.
|
1888 | 1888 |
|
@@ -2203,8 +2203,8 @@ _.some([null, 0, 'yes', false]);
|
2203 | 2203 |
|
2204 | 2204 | <!-- div -->
|
2205 | 2205 |
|
2206 |
| -### <a id="_sortbycollection-callback|property--thisarg"></a>`_.sortBy(collection, callback|property [, thisArg])` |
2207 |
| -<a href="#_sortbycollection-callback|property--thisarg">#</a> [Ⓢ](https://github.com/bestiejs/lodash/blob/master/lodash.js#L2373 "View in source") [Ⓣ][1] |
| 2206 | +### <a id="_sortbycollection-callbackproperty--thisarg"></a>`_.sortBy(collection, callback|property [, thisArg])` |
| 2207 | +<a href="#_sortbycollection-callbackproperty--thisarg">#</a> [Ⓢ](https://github.com/bestiejs/lodash/blob/master/lodash.js#L2373 "View in source") [Ⓣ][1] |
2208 | 2208 |
|
2209 | 2209 | Creates a new array, stable sorted in ascending order by the results of running each element of `collection` through a `callback`. The `<
FEAE
/span>callback` is bound to `thisArg` and invoked with `3` arguments; *(value, index|key, collection)*. The `callback` argument may also be the name of a property to sort by *(e.g. 'length')*.
|
2210 | 2210 |
|
|
0 commit comments