mirror of
https://github.com/fluencelabs/jsonpath
synced 2025-04-04 16:01:04 +00:00
16 lines
461 B
JavaScript
16 lines
461 B
JavaScript
|
import * as jsonpath from "rs-jsonpath";
|
||
|
|
||
|
let jsonString = "{\"a\" : 1}";
|
||
|
|
||
|
let template = jsonpath.compile("$.a");
|
||
|
console.log(template(jsonString));
|
||
|
console.log(template(JSON.parse(jsonString)));
|
||
|
|
||
|
let reader1 = jsonpath.reader(jsonString);
|
||
|
console.log(reader1("$.a"));
|
||
|
|
||
|
let reader2 = jsonpath.reader(JSON.parse(jsonString));
|
||
|
console.log(reader2("$.a"));
|
||
|
|
||
|
console.log(jsonpath.read(JSON.parse(jsonString), "$.a"));
|
||
|
console.log(jsonpath.read(jsonString, "$.a"));
|