Skip to content

Commit

Permalink
style: update formatter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
anonrig committed Sep 6, 2022
1 parent 08a1509 commit b9bc57e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/stringify.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function getAsPrimitive(value) {
function stringify(input) {
let result = "";

if (input === null || typeof input !== 'object') {
if (input === null || typeof input !== "object") {
return result;
}

Expand Down

0 comments on commit b9bc57e

Please sign in to comment.