8000 Cleanup link hashes in generated docs and update vendors. · lodash/lodash@061ad41 · GitHub
[go: up one dir, main page]

Skip to content

Commit 061ad41

Browse files
committed
Cleanup link hashes in generated docs and update vendors.
Former-commit-id: 278366a7dacea91d965835b24ae7ec046f455110
1 parent 3a0007c commit 061ad41

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

doc/README.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
* [`_.compact`](#_compactarray)
1717
* [`_.compose`](#_composefunc1-func2-)
1818
* [`_.contains`](#_containscollection-target)
19-
* [`_.countBy`](#_countbycollection-callback|property--thisarg)
19+
* [`_.countBy`](#_countbycollection-callbackproperty--thisarg)
2020
* [`_.debounce`](#_debouncefunc-wait-immediate)
2121
* [`_.defaults`](#_defaultsobject--default1-default2-)
2222
* [`_.defer`](#_deferfunc--arg1-arg2-)
2323
* [`_.delay`](#_delayfunc-wait--arg1-arg2-)
2424
* [`_.difference`](#_differencearray--array1-array2-)
25-
* [`_.drop`](#_dropobject-callback|-prop1-prop2--thisarg)
25+
* [`_.drop`](#_dropobject-callback-prop1-prop2--thisarg)
2626
* [`_.escape`](#_escapestring)
2727
* [`_.every`](#_everycollection--callbackidentity-thisarg)
2828
* [`_.extend`](#_extendobject--source1-source2-)
@@ -34,7 +34,7 @@
3434
* [`_.forIn`](#_forinobject-callback--thisarg)
3535
* [`_.forOwn`](#_forownobject-callback--thisarg)
3636
* [`_.functions`](#_functionsobject)
37-
* [`_.groupBy`](#_groupbycollection-callback|property--thisarg)
37+
* [`_.groupBy`](#_groupbycollection-callbackproperty--thisarg)
3838
* [`_.has`](#_hasobject-property)
3939
* [`_.identity`](#_identityvalue)
4040
* [`_.indexOf`](#_indexofarray-value--fromindex0)
@@ -69,7 +69,7 @@
6969
* [`_.noConflict`](#_noconflict)
7070
* [`_.once`](#_oncefunc)
7171
* [`_.partial`](#_partialfunc--arg1-arg2-)
72-
* [`_.pick`](#_pickobject-callback|-prop1-prop2--thisarg)
72+
* [`_.pick`](#_pickobject-callback-prop1-prop2--thisarg)
7373
* [`_.pluck`](#_pluckcollection-property)
7474
* [`_.range`](#_rangestart0-end--step1)
7575
* [`_.reduce`](#_reducecollection-callback--accumulator-thisarg)
@@ -80,7 +80,7 @@
8080
* [`_.shuffle`](#_shufflearray)
8181
* [`_.size`](#_sizevalue)
8282
* [`_.some`](#_somecollection--callbackidentity-thisarg)
83-
* [`_.sortBy`](#_sortbycollection-callback|property--thisarg)
83+
* [`_.sortBy`](#_sortbycollection-callbackproperty--thisarg)
8484
* [`_.sortedIndex`](#_sortedindexarray-value--callbackidentity-thisarg)
8585
* [`_.tap`](#_tapvalue-interceptor)
8686
* [`_.template`](#_templatetext-data-options)
@@ -440,8 +440,8 @@ _.contains('curly', 'ur');
440440

441441
<!-- div -->
442442

443-
### <a id="_countbycollection-callback|property--thisarg"></a>`_.countBy(collection, callback|property [, thisArg])`
444-
<a href="#_countbycollection-callback|property--thisarg">#</a> [&#x24C8;](https://github.com/bestiejs/lodash/blob/master/lodash.js#L1997 "View in source") [&#x24C9;][1]
443+
### <a id="_countbycollection-callbackproperty--thisarg"></a>`_.countBy(collection, callback|property [, thisArg])`
444+
<a href="#_countbycollection-callbackproperty--thisarg">#</a> [&#x24C8;](https://github.com/bestiejs/lodash/blob/master/lodash.js#L1997 "View in source") [&#x24C9;][1]
445445

446446
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')*.
447447

@@ -601,8 +601,8 @@ _.difference([1, 2, 3, 4, 5], [5, 2, 10]);
601601

602602
<!-- div -->
603603

604-
### <a id="_dropobject-callback|-prop1-prop2--thisarg"></a>`_.drop(object, callback|[prop1, prop2, ..., thisArg])`
605-
<a href="#_dropobject-callback|-prop1-prop2--thisarg">#</a> [&#x24C8;](https://github.com/bestiejs/lodash/blob/master/lodash.js#L1201 "View in source") [&#x24C9;][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> [&#x24C8;](https://github.com/bestiejs/lodash/blob/master/lodash.js#L1201 "View in source") [&#x24C9;][1]
606606

607607
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)*.
608608

@@ -930,8 +930,8 @@ _.functions(_);
930930

931931
<!-- div -->
932932

933-
### <a id="_groupbycollection-callback|property--thisarg"></a>`_.groupBy(collection, callback|property [, thisArg])`
934-
<a href="#_groupbycollection-callback|property--thisarg">#</a> [&#x24C8;](https://github.com/bestiejs/lodash/blob/master/lodash.js#L2113 "View in source") [&#x24C9;][1]
933+
### <a id="_groupbycollection-callbackproperty--thisarg"></a>`_.groupBy(collection, callback|property [, thisArg])`
934+
<a href="#_groupbycollection-callbackproperty--thisarg">#</a> [&#x24C8;](https://github.com/bestiejs/lodash/blob/master/lodash.js#L2113 "View in source") [&#x24C9;][1]
935935

936936
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')*.
937937

@@ -1881,8 +1881,8 @@ hi('moe');
18811881
18821882
<!-- div -->
18831883
1884-
### <a id="_pickobject-callback|-prop1-prop2--thisarg"></a>`_.pick(object, callback|[prop1, prop2, ..., thisArg])`
1885-
<a href="#_pickobject-callback|-prop1-prop2--thisarg">#</a> [&#x24C8;](https://github.com/bestiejs/lodash/blob/master/lodash.js#L1862 "View in source") [&#x24C9;][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> [&#x24C8;](https://github.com/bestiejs/lodash/blob/master/lodash.js#L1862 "View in source") [&#x24C9;][1]
18861886
18871887
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)*.
18881888
@@ -2203,8 +2203,8 @@ _.some([null, 0, 'yes', false]);
22032203
22042204
<!-- div -->
22052205
2206-
### <a id="_sortbycollection-callback|property--thisarg"></a>`_.sortBy(collection, callback|property [, thisArg])`
2207-
<a href="#_sortbycollection-callback|property--thisarg">#</a> [&#x24C8;](https://github.com/bestiejs/lodash/blob/master/lodash.js#L2373 "View in source") [&#x24C9;][1]
2206+
### <a id="_sortbycollection-callbackproperty--thisarg"></a>`_.sortBy(collection, callback|property [, thisArg])`
2207+
<a href="#_sortbycollection-callbackproperty--thisarg">#</a> [&#x24C8;](https://github.com/bestiejs/lodash/blob/master/lodash.js#L2373 "View in source") [&#x24C9;][1]
22082208
22092209
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')*.
22102210

vendor/benchmark.js/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ For a list of upcoming features, check out our [roadmap](https://github.com/best
1414

1515
## Support
1616

17-
Benchmark.js has been tested in at least Adobe AIR 3.1, Chrome 5-21, Firefox 1-14, IE 6-9, Opera 9.25-12, Safari 3-6, Node.js 0.8.7, Narwhal 0.3.2, RingoJS 0.8, and Rhino 1.7RC5.
17+
Benchmark.js has been tested in at least Adobe AIR 3.1, Chrome 5-21, Firefox 1-15, IE 6-9, Opera 9.25-12, Safari 3-6, Node.js 0.8.8, Narwhal 0.3.2, RingoJS 0.8, and Rhino 1.7RC5.
1818

1919
## Installation and usage
2020

vendor/docdown/src/DocDown/Generator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ private function getHash( $entry, $member = '' ) {
163163
$member = !$member ? $entry->getMembers(0) : $member;
164164
$result = ($member ? $member . ($entry->isPlugin() ? 'prototype' : '') : '') . $entry->getCall();
165165
$result = preg_replace('/\(\[|\[\]/', '', $result);
166-
$result = preg_replace('/[ =\'"{}.()\]]/', '', $result);
166+
$result = preg_replace('/[ =|\'"{}.()\]]/', '', $result);
167167
$result = preg_replace('/[[#,]/', '-', $result);
168168
return strtolower($result);
169169
}

0 commit comments

Comments
 (0)
0