Current section
Files
Jump to
Current section
Files
node/jsonpath.js
var jsonpath = require('jsonpath');
module.exports = {
query: (payload, path, count = undefined) => {
return jsonpath.query(JSON.parse(payload), path, count);
},
}