We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8ba5c2 commit d402bb9Copy full SHA for d402bb9
1 file changed
README.md
@@ -86,8 +86,11 @@ magic is necessary:
86
<script src="node_modules/core-js-bundle/minified.js"></script>
87
88
<script src="node_modules/jsonpath-plus/dist/index-umd.js"></script>
89
+
90
<script>
91
92
const result = JSONPath.JSONPath({path: '...', json: ...});
93
94
</script>
95
```
96
@@ -97,8 +100,10 @@ You may also use ES6 Module imports (for modern browsers):
97
100
98
101
```html
99
102
<script type="module">
103
104
import {JSONPath} from './node_modules/jsonpath-plus/dist/index-es.js';
105
const result = JSONPath({path: '...', json: ...});
106
107
108
109
0 commit comments