json2yaml icon indicating copy to clipboard operation
json2yaml copied to clipboard

Fix implicit conversion in string made by numbers.

Open corvofeng opened this issue 3 years ago • 0 comments

When I passed {hello: '1'}, the hello's value should be a string '1' not a number 1, but code will give this:

------------------------
TESTING:
{ hello: '1' }
OUTPUT:
hello: 1
------------------------

This result isn't I expect, so I make a change.

Signed-off-by: corvofeng [email protected]

corvofeng avatar Nov 01 '21 02:11 corvofeng