Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/stringify.js
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down