srikanthmanda/json-formatter

Boolean values are being converted to Strings

srikanthmanda opened this issue · 1 comments

Input: [true, false]

Expected output:

[
	true,
	false
]

Actual output:

[
	"true",
	"false"
]

Fixed by refactor branch merge #11