Boolean values are being converted to Strings
srikanthmanda opened this issue · 1 comments
srikanthmanda commented
Input: [true, false]
Expected output:
[
true,
false
]
Actual output:
[
"true",
"false"
]
srikanthmanda commented
Fixed by refactor branch merge #11