mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-07 10:07:48 +00:00
Update V8 bug links. [ci skip]
This commit is contained in:
@@ -1050,7 +1050,7 @@
|
|||||||
// for more details.
|
// for more details.
|
||||||
//
|
//
|
||||||
// This also ensures a stable sort in V8 and other engines.
|
// This also ensures a stable sort in V8 and other engines.
|
||||||
// See https://code.google.com/p/v8/issues/detail?id=90 for more details.
|
// See https://bugs.chromium.org/p/v8/issues/detail?id=90 for more details.
|
||||||
return object.index - other.index;
|
return object.index - other.index;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -5509,8 +5509,9 @@
|
|||||||
* Sets metadata for `func`.
|
* Sets metadata for `func`.
|
||||||
*
|
*
|
||||||
* **Note:** If this function becomes hot, i.e. is invoked a lot in a short
|
* **Note:** If this function becomes hot, i.e. is invoked a lot in a short
|
||||||
* period of time, it will trip its breaker and transition to an identity function
|
* period of time, it will trip its breaker and transition to an identity
|
||||||
* to avoid garbage collection pauses in V8. See [V8 issue 2070](https://code.google.com/p/v8/issues/detail?id=2070)
|
* function to avoid garbage collection pauses in V8. See
|
||||||
|
* [V8 issue 2070](https://bugs.chromium.org/p/v8/issues/detail?id=2070)
|
||||||
* for more details.
|
* for more details.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
@@ -13022,7 +13023,7 @@
|
|||||||
*/
|
*/
|
||||||
function parseInt(string, radix, guard) {
|
function parseInt(string, radix, guard) {
|
||||||
// Chrome fails to trim leading <BOM> whitespace characters.
|
// Chrome fails to trim leading <BOM> whitespace characters.
|
||||||
// See https://code.google.com/p/v8/issues/detail?id=3109 for more details.
|
// See https://bugs.chromium.org/p/v8/issues/detail?id=3109 for more details.
|
||||||
if (guard || radix == null) {
|
if (guard || radix == null) {
|
||||||
radix = 0;
|
radix = 0;
|
||||||
} else if (radix) {
|
} else if (radix) {
|
||||||
|
|||||||
Reference in New Issue
Block a user