Add backticks to error message. [ci skip]

This commit is contained in:
John-David Dalton
2016-05-16 18:30:12 -07:00
parent 315e751f43
commit b2da5ee1a7

View File

@@ -11216,7 +11216,7 @@
*/
function isNative(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);
}