1
0
mirror of https://github.com/fluencelabs/jsonpath synced 2025-04-03 15:31:04 +00:00

34 lines
737 B
JavaScript
Raw Normal View History

2019-03-14 22:30:42 +09:00
const { Compile, Selector, selectStr } = require('../native');
function compile(path) {
let compile = new Compile(path);
return (json) => {
if(typeof json != 'string') {
json = JSON.stringify(json)
}
return JSON.parse(compile.template(json));
2019-03-14 22:30:42 +09:00
};
}
function selector(json) {
if(typeof json != 'string') {
json = JSON.stringify(json)
}
let selector = new Selector(json);
return (path) => {
return JSON.parse(selector.selector(path));
2019-03-14 22:30:42 +09:00
}
}
function select(json, path) {
if(typeof json != 'string') {
json = JSON.stringify(json)
}
return JSON.parse(selectStr(json, path));
2019-03-14 22:30:42 +09:00
}
module.exports = {
compile,
selector,
select
};