Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/node_modules/parse-json/readme.md')
-rw-r--r--assets/node_modules/parse-json/readme.md101
1 files changed, 101 insertions, 0 deletions
diff --git a/assets/node_modules/parse-json/readme.md b/assets/node_modules/parse-json/readme.md
new file mode 100644
index 0000000..c4efee0
--- /dev/null
+++ b/assets/node_modules/parse-json/readme.md
@@ -0,0 +1,101 @@
+# parse-json [![Build Status](https://travis-ci.org/sindresorhus/parse-json.svg?branch=master)](https://travis-ci.org/sindresorhus/parse-json)
+
+> Parse JSON with more helpful errors
+
+
+## Install
+
+```
+$ npm install parse-json
+```
+
+
+## Usage
+
+```js
+const parseJson = require('parse-json');
+
+const json = '{\n\t"foo": true,\n}';
+
+
+JSON.parse(json);
+/*
+undefined:3
+}
+^
+SyntaxError: Unexpected token }
+*/
+
+
+parseJson(json);
+/*
+JSONError: Unexpected token } in JSON at position 16 while parsing near '{ "foo": true,}'
+
+ 1 | {
+ 2 | "foo": true,
+> 3 | }
+ | ^
+*/
+
+
+parseJson(json, 'foo.json');
+/*
+JSONError: Unexpected token } in JSON at position 16 while parsing near '{ "foo": true,}' in foo.json
+
+ 1 | {
+ 2 | "foo": true,
+> 3 | }
+ | ^
+*/
+
+
+// You can also add the filename at a later point
+try {
+ parseJson(json);
+} catch (error) {
+ error.fileName = 'foo.json';
+ throw error;
+}
+/*
+JSONError: Unexpected token } in JSON at position 16 while parsing near '{ "foo": true,}' in foo.json
+
+ 1 | {
+ 2 | "foo": true,
+> 3 | }
+ | ^
+*/
+```
+
+## API
+
+### parseJson(string, reviver?, filename?)
+
+#### string
+
+Type: `string`
+
+#### reviver
+
+Type: `Function`
+
+Prescribes how the value originally produced by parsing is transformed, before being returned. See [`JSON.parse` docs](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse#Using_the_reviver_parameter
+) for more.
+
+#### filename
+
+Type: `string`
+
+Filename displayed in the error message.
+
+
+---
+
+<div align="center">
+ <b>
+ <a href="https://tidelift.com/subscription/pkg/npm-parse-json?utm_source=npm-parse-json&utm_medium=referral&utm_campaign=readme">Get professional support for this package with a Tidelift subscription</a>
+ </b>
+ <br>
+ <sub>
+ Tidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.
+ </sub>
+</div>