File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 255
255
256
256
// Return the maximum element or (element-based computation).
257
257
// Can't optimize arrays of integers longer than 65,535 elements.
258
- // See: https://bugs.webkit.org/show_bug.cgi?id=80797
258
+ // See [WebKit Bug 80797]( https://bugs.webkit.org/show_bug.cgi?id=80797)
259
259
_ . max = function ( obj , iterator , context ) {
260
260
if ( ! iterator && _ . isArray ( obj ) && obj [ 0 ] === + obj [ 0 ] && obj . length < 65535 ) {
261
261
return Math . max . apply ( Math , obj ) ;
847
847
// Internal recursive comparison function for `isEqual`.
848
848
var eq = function ( a , b , aStack , bStack ) {
849
849
// Identical objects are equal. `0 === -0`, but they aren't identical.
850
- // See the Harmony `egal` proposal: http://wiki.ecmascript.org/doku.php?id=harmony:egal.
850
+ // See the [ Harmony `egal` proposal]( http://wiki.ecmascript.org/doku.php?id=harmony:egal) .
851
851
if ( a === b ) return a !== 0 || 1 / a == 1 / b ;
852
852
// A strict comparison is necessary because `null == undefined`.
853
853
if ( a == null || b == null ) return a === b ;
You can’t perform that action at this time.
0 commit comments