feat: ✨ Created a mini nodeJS server with NewMan for testing without PostMan GUI.
This will mimic a run in a CD/CI environment or docker container.
This commit is contained in:
23
node_modules/liquid-json/README.md
generated
vendored
Normal file
23
node_modules/liquid-json/README.md
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
# liquid-json
|
||||
|
||||
Implementation of `JSON` which ignores BOM and shows more detailed error messages on parse failures.
|
||||
|
||||
## usage
|
||||
|
||||
```terminal
|
||||
$ npm install liquid-json --save;
|
||||
```
|
||||
|
||||
```javascript
|
||||
var LJSON = require('liquid-json');
|
||||
LJSON.parse('{ "hello": "world" }');
|
||||
LJSON.stringify({ hello: 'world' });
|
||||
```
|
||||
|
||||
`LJSON.parse` accepts `reviver` function as second parameter and `LJSON.stringify` accepts standard JSON parameters.
|
||||
All errors raised from this module has error name as `JSONError`.
|
||||
|
||||
## attributions
|
||||
|
||||
- https://github.com/rlidwka/jju
|
||||
- https://github.com/ariya/esprima
|
Reference in New Issue
Block a user