json-help
v1.0.0
Published
utilities for diffrent json operations
Maintainers
Readme
json-help
javascript functions for different json related operation which are not build in
methods
var jsonHelp = require('json-help');
- json merge -- merges two json objects
jsonHelp.merge({}, json1 , json2);
- get all keys in json
jsonHelp.getKeys(jsonObj);
- convert json to array
jsonHelp.toArray(jsonObj);
- validate the json
jsonHelp.validate(jsonObj);
