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