0.0.2 • Published 7 years ago
json-value-to-array v0.0.2
JSON-To-Array
JSON-To-Array
is a comprehensive nodejs json parser to convert json
object value to array
elaement.
Installation
First install node.js then:
$ npm install json-value-to-array
var jsonToArray = require('json-value-to-array');
var data = {
'name': 'Harshal',
'email': 'Harshal.Nathe@abc.com',
'contact': '9999999999',
'stage': '1 Target',
'updatedAt': '2018-05-31'
};
jsonToArray.jsonToArray(data, function (result) {
console.log(result);
});
Output
[ [ 'Harshal',
'Harshal.Nathe@abc.com',
'9999999999',
'1 Target',
'2018-05-31' ] ]
Versioning
1.0.0
Author
Harshal U. Nathe