diff --git a/lib/stringify.js b/lib/stringify.js index 3bd5269..f6dce93 100644 --- a/lib/stringify.js +++ b/lib/stringify.js @@ -248,7 +248,7 @@ var JSON = module.exports; return isFinite(value) ? String(value) : 'null'; case 'boolean': - case 'null': +// case 'null': un-necessary because null is of type object and checked below, lints may fail with this in place case 'bigint': // If the value is a boolean or null, convert it to a string. Note: