convert-array-json
v0.1.3
Published
This package convert json to array and array to json
Readme
How to use?
JSON: const json = { "Teste": true, "Teste2": false }; const convert = require('convert-array-json'); . . convert.convertToJson(json);
Array: const array = [ "Teste", "Teste2" ]; const convert = require('convert-array-json'); . . convert.convertToArray(array);
@eusouodaniel
