Skip to content
This repository was archived by the owner on Aug 23, 2022. It is now read-only.

Commit 0c5675f

Browse files
bl00mberisaacs
authored andcommitted
fix: strict comparison
PR-URL: #2 Credit: @bl00mber Close: #2 Reviewed-by: @isaacs
1 parent d8ad1ee commit 0c5675f

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ const CRLF = '\r\n'
77
const LF = '\n'
88

99
function stringifyPackage (data, indent, newline) {
10-
const json = JSON.stringify(data, null, indent || DEFAULT_INDENT)
10+
indent = indent || (indent === 0 ? 0 : DEFAULT_INDENT)
11+
const json = JSON.stringify(data, null, indent)
1112

1213
if (newline === CRLF) {
1314
return json.replace(/\n/g, CRLF) + CRLF

test/nonformatted.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
'use strict'
2+
3+
const stringifyPackage = require('../index')
4+
const test = require('tap').test
5+
6+
const dummy = { name: 'dummy' }
7+
8+
test('stringify-package', function (t) {
9+
t.equal(stringifyPackage(dummy, 0).split(/\r\n|\r|\n/).length, 2, '0 works')
10+
t.end()
11+
})

0 commit comments

Comments
 (0)