Skip to content

Commit d33c487

Browse files
committed
Add parseFloat to contextProps.
1 parent b309b50 commit d33c487

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lodash.src.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,8 @@
154154
'Array', 'ArrayBuffer', 'Date', 'Error', 'Float32Array', 'Float64Array',
155155
'Function', 'Int8Array', 'Int16Array', 'Int32Array', 'Math', 'Number',
156156
'Object', 'RegExp', 'Set', 'String', '_', 'clearTimeout', 'document',
157-
'isFinite', 'parseInt', 'setTimeout', 'TypeError', 'Uint8Array',
158-
'Uint8ClampedArray', 'Uint16Array', 'Uint32Array', 'WeakMap',
159-
'window'
157+
'isFinite', 'parseFloat', 'parseInt', 'setTimeout', 'TypeError', 'Uint8Array',
158+
'Uint8ClampedArray', 'Uint16Array', 'Uint32Array', 'WeakMap', 'window'
160159
];
161160

162161
/** Used to fix the JScript `[[DontEnum]]` bug. */
@@ -774,6 +773,7 @@
774773
clearTimeout = context.clearTimeout,
775774
floor = Math.floor,
776775
getPrototypeOf = getNative(Object, 'getPrototypeOf'),
776+
parseFloat = context.parseFloat,
777777
push = arrayProto.push,
778778
propertyIsEnumerable = objectProto.propertyIsEnumerable,
779779
Set = getNative(context, 'Set'),

0 commit comments

Comments
 (0)