4.17.11
3.10.1
2.4.2
1.3.1

_.isNative(value)

Checks if value is a pristine native function.

Note: This method can't reliably detect native functions in the presence of the core-js package because core-js circumvents this kind of detection. Despite multiple requests, the core-js maintainer has made it clear: any attempt to fix the detection will be obstructed. As a result, we're left with little choice but to throw an error. Unfortunately, this also affects packages, like babel-polyfill, which rely on core-js.

Since

3.0.0

Arguments

argument
value
type
*
description
The value to check.

Returns

(array)

Example

_.isNative(Array.prototype.push);
// => true

_.isNative(_);
// => false
_.isNative(Array.prototype.push);
// => true

_.isNative(_);
// => false