From b2da5ee1a7b778a31833a9241746b5581a5808cd Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 16 May 2016 18:30:12 -0700 Subject: [PATCH] Add backticks to error message. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index a139da347..032d495f8 100644 --- a/lodash.js +++ b/lodash.js @@ -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); }