mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-06 17:47:49 +00:00
Remove backticks from package name.
This commit is contained in:
16
lodash.js
16
lodash.js
@@ -11400,13 +11400,13 @@
|
|||||||
/**
|
/**
|
||||||
* Checks if `value` is a pristine native function.
|
* Checks if `value` is a pristine native function.
|
||||||
*
|
*
|
||||||
* **Note:** This method can't reliably detect native functions in the
|
* **Note:** This method can't reliably detect native functions in the presence
|
||||||
* presence of the `core-js` package because `core-js` circumvents this kind
|
* of the core-js package because core-js circumvents this kind of detection.
|
||||||
* of detection. Despite multiple requests, the `core-js` maintainer has made
|
* Despite multiple requests, the core-js maintainer has made it clear: any
|
||||||
* it clear: any attempt to fix the detection will be obstructed. As a result,
|
* attempt to fix the detection will be obstructed. As a result, we're left
|
||||||
* we're left with little choice but to throw an error. Unfortunately, this
|
* with little choice but to throw an error. Unfortunately, this also affects
|
||||||
* also affects packages, like [babel-polyfill](https://www.npmjs.com/package/babel-polyfill),
|
* packages, like [babel-polyfill](https://www.npmjs.com/package/babel-polyfill),
|
||||||
* which rely on `core-js`.
|
* which rely on core-js.
|
||||||
*
|
*
|
||||||
* @static
|
* @static
|
||||||
* @memberOf _
|
* @memberOf _
|
||||||
@@ -11425,7 +11425,7 @@
|
|||||||
*/
|
*/
|
||||||
function isNative(value) {
|
function isNative(value) {
|
||||||
if (isMaskable(value)) {
|
if (isMaskable(value)) {
|
||||||
throw new Error('This method is not supported with `core-js`. Try https://github.com/es-shims.');
|
throw new Error('This method is not supported with core-js. Try https://github.com/es-shims.');
|
||||||
}
|
}
|
||||||
return baseIsNative(value);
|
return baseIsNative(value);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user