mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-09 10:27:49 +00:00
Remove unused native isNaN reference.
This commit is contained in:
@@ -115,10 +115,10 @@
|
|||||||
/** Used to assign default `context` object properties */
|
/** Used to assign default `context` object properties */
|
||||||
var contextProps = [
|
var contextProps = [
|
||||||
'Array', 'ArrayBuffer', 'Date', 'Error', 'Float32Array', 'Float64Array',
|
'Array', 'ArrayBuffer', 'Date', 'Error', 'Float32Array', 'Float64Array',
|
||||||
'Function', 'Int8Array', 'Int16Array', 'Int32Array', 'Math', 'Number', 'Object',
|
'Function', 'Int8Array', 'Int16Array', 'Int32Array', 'Math', 'Number',
|
||||||
'RegExp', 'Set', 'String', '_', 'clearTimeout', 'document', 'isFinite', 'isNaN',
|
'Object', 'RegExp', 'Set', 'String', '_', 'clearTimeout', 'document',
|
||||||
'parseInt', 'setTimeout', 'TypeError', 'Uint8Array', 'Uint8ClampedArray',
|
'isFinite', 'parseInt', 'setTimeout', 'TypeError', 'Uint8Array',
|
||||||
'Uint16Array', 'Uint32Array', 'window', 'WinRTError'
|
'Uint8ClampedArray', 'Uint16Array', 'Uint32Array', 'window', 'WinRTError'
|
||||||
];
|
];
|
||||||
|
|
||||||
/** Used to fix the JScript `[[DontEnum]]` bug */
|
/** Used to fix the JScript `[[DontEnum]]` bug */
|
||||||
@@ -687,7 +687,6 @@
|
|||||||
nativeCreate = isNative(nativeCreate = Object.create) && nativeCreate,
|
nativeCreate = isNative(nativeCreate = Object.create) && nativeCreate,
|
||||||
nativeIsArray = isNative(nativeIsArray = Array.isArray) && nativeIsArray,
|
nativeIsArray = isNative(nativeIsArray = Array.isArray) && nativeIsArray,
|
||||||
nativeIsFinite = context.isFinite,
|
nativeIsFinite = context.isFinite,
|
||||||
nativeIsNaN = context.isNaN,
|
|
||||||
nativeKeys = isNative(nativeKeys = Object.keys) && nativeKeys,
|
nativeKeys = isNative(nativeKeys = Object.keys) && nativeKeys,
|
||||||
nativeMax = Math.max,
|
nativeMax = Math.max,
|
||||||
nativeMin = Math.min,
|
nativeMin = Math.min,
|
||||||
|
|||||||
Reference in New Issue
Block a user