mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-02-04 14:00:49 +00:00
nhj
more
This commit is contained in:
50
unified-ai-platform/node_modules/json-parse-even-better-errors/CHANGELOG.md
generated
vendored
Normal file
50
unified-ai-platform/node_modules/json-parse-even-better-errors/CHANGELOG.md
generated
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
||||
|
||||
## 2.0.0
|
||||
|
||||
* Add custom error classes
|
||||
|
||||
<a name="1.0.2"></a>
|
||||
## [1.0.2](https://github.com/npm/json-parse-even-better-errors/compare/v1.0.1...v1.0.2) (2018-03-30)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **messages:** More friendly messages for non-string ([#1](https://github.com/npm/json-parse-even-better-errors/issues/1)) ([a476d42](https://github.com/npm/json-parse-even-better-errors/commit/a476d42))
|
||||
|
||||
|
||||
|
||||
<a name="1.0.1"></a>
|
||||
## [1.0.1](https://github.com/npm/json-parse-even-better-errors/compare/v1.0.0...v1.0.1) (2017-08-16)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **license:** oops. Forgot to update license.md ([efe2958](https://github.com/npm/json-parse-even-better-errors/commit/efe2958))
|
||||
|
||||
|
||||
|
||||
<a name="1.0.0"></a>
|
||||
# 1.0.0 (2017-08-15)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **init:** Initial Commit ([562c977](https://github.com/npm/json-parse-even-better-errors/commit/562c977))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* **init:** This is the first commit!
|
||||
|
||||
|
||||
|
||||
<a name="0.1.0"></a>
|
||||
# 0.1.0 (2017-08-15)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **init:** Initial Commit ([9dd1a19](https://github.com/npm/json-parse-even-better-errors/commit/9dd1a19))
|
||||
25
unified-ai-platform/node_modules/json-parse-even-better-errors/LICENSE.md
generated
vendored
Normal file
25
unified-ai-platform/node_modules/json-parse-even-better-errors/LICENSE.md
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
Copyright 2017 Kat Marchán
|
||||
Copyright npm, Inc.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a
|
||||
copy of this software and associated documentation files (the "Software"),
|
||||
to deal in the Software without restriction, including without limitation
|
||||
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
and/or sell copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
DEALINGS IN THE SOFTWARE.
|
||||
|
||||
---
|
||||
|
||||
This library is a fork of 'better-json-errors' by Kat Marchán, extended and
|
||||
distributed under the terms of the MIT license above.
|
||||
121
unified-ai-platform/node_modules/json-parse-even-better-errors/index.js
generated
vendored
Normal file
121
unified-ai-platform/node_modules/json-parse-even-better-errors/index.js
generated
vendored
Normal file
@@ -0,0 +1,121 @@
|
||||
'use strict'
|
||||
|
||||
const hexify = char => {
|
||||
const h = char.charCodeAt(0).toString(16).toUpperCase()
|
||||
return '0x' + (h.length % 2 ? '0' : '') + h
|
||||
}
|
||||
|
||||
const parseError = (e, txt, context) => {
|
||||
if (!txt) {
|
||||
return {
|
||||
message: e.message + ' while parsing empty string',
|
||||
position: 0,
|
||||
}
|
||||
}
|
||||
const badToken = e.message.match(/^Unexpected token (.) .*position\s+(\d+)/i)
|
||||
const errIdx = badToken ? +badToken[2]
|
||||
: e.message.match(/^Unexpected end of JSON.*/i) ? txt.length - 1
|
||||
: null
|
||||
|
||||
const msg = badToken ? e.message.replace(/^Unexpected token ./, `Unexpected token ${
|
||||
JSON.stringify(badToken[1])
|
||||
} (${hexify(badToken[1])})`)
|
||||
: e.message
|
||||
|
||||
if (errIdx !== null && errIdx !== undefined) {
|
||||
const start = errIdx <= context ? 0
|
||||
: errIdx - context
|
||||
|
||||
const end = errIdx + context >= txt.length ? txt.length
|
||||
: errIdx + context
|
||||
|
||||
const slice = (start === 0 ? '' : '...') +
|
||||
txt.slice(start, end) +
|
||||
(end === txt.length ? '' : '...')
|
||||
|
||||
const near = txt === slice ? '' : 'near '
|
||||
|
||||
return {
|
||||
message: msg + ` while parsing ${near}${JSON.stringify(slice)}`,
|
||||
position: errIdx,
|
||||
}
|
||||
} else {
|
||||
return {
|
||||
message: msg + ` while parsing '${txt.slice(0, context * 2)}'`,
|
||||
position: 0,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class JSONParseError extends SyntaxError {
|
||||
constructor (er, txt, context, caller) {
|
||||
context = context || 20
|
||||
const metadata = parseError(er, txt, context)
|
||||
super(metadata.message)
|
||||
Object.assign(this, metadata)
|
||||
this.code = 'EJSONPARSE'
|
||||
this.systemError = er
|
||||
Error.captureStackTrace(this, caller || this.constructor)
|
||||
}
|
||||
get name () { return this.constructor.name }
|
||||
set name (n) {}
|
||||
get [Symbol.toStringTag] () { return this.constructor.name }
|
||||
}
|
||||
|
||||
const kIndent = Symbol.for('indent')
|
||||
const kNewline = Symbol.for('newline')
|
||||
// only respect indentation if we got a line break, otherwise squash it
|
||||
// things other than objects and arrays aren't indented, so ignore those
|
||||
// Important: in both of these regexps, the $1 capture group is the newline
|
||||
// or undefined, and the $2 capture group is the indent, or undefined.
|
||||
const formatRE = /^\s*[{\[]((?:\r?\n)+)([\s\t]*)/
|
||||
const emptyRE = /^(?:\{\}|\[\])((?:\r?\n)+)?$/
|
||||
|
||||
const parseJson = (txt, reviver, context) => {
|
||||
const parseText = stripBOM(txt)
|
||||
context = context || 20
|
||||
try {
|
||||
// get the indentation so that we can save it back nicely
|
||||
// if the file starts with {" then we have an indent of '', ie, none
|
||||
// otherwise, pick the indentation of the next line after the first \n
|
||||
// If the pattern doesn't match, then it means no indentation.
|
||||
// JSON.stringify ignores symbols, so this is reasonably safe.
|
||||
// if the string is '{}' or '[]', then use the default 2-space indent.
|
||||
const [, newline = '\n', indent = ' '] = parseText.match(emptyRE) ||
|
||||
parseText.match(formatRE) ||
|
||||
[, '', '']
|
||||
|
||||
const result = JSON.parse(parseText, reviver)
|
||||
if (result && typeof result === 'object') {
|
||||
result[kNewline] = newline
|
||||
result[kIndent] = indent
|
||||
}
|
||||
return result
|
||||
} catch (e) {
|
||||
if (typeof txt !== 'string' && !Buffer.isBuffer(txt)) {
|
||||
const isEmptyArray = Array.isArray(txt) && txt.length === 0
|
||||
throw Object.assign(new TypeError(
|
||||
`Cannot parse ${isEmptyArray ? 'an empty array' : String(txt)}`
|
||||
), {
|
||||
code: 'EJSONPARSE',
|
||||
systemError: e,
|
||||
})
|
||||
}
|
||||
|
||||
throw new JSONParseError(e, parseText, context, parseJson)
|
||||
}
|
||||
}
|
||||
|
||||
// Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)
|
||||
// because the buffer-to-string conversion in `fs.readFileSync()`
|
||||
// translates it to FEFF, the UTF-16 BOM.
|
||||
const stripBOM = txt => String(txt).replace(/^\uFEFF/, '')
|
||||
|
||||
module.exports = parseJson
|
||||
parseJson.JSONParseError = JSONParseError
|
||||
|
||||
parseJson.noExceptions = (txt, reviver) => {
|
||||
try {
|
||||
return JSON.parse(stripBOM(txt), reviver)
|
||||
} catch (e) {}
|
||||
}
|
||||
33
unified-ai-platform/node_modules/json-parse-even-better-errors/package.json
generated
vendored
Normal file
33
unified-ai-platform/node_modules/json-parse-even-better-errors/package.json
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"name": "json-parse-even-better-errors",
|
||||
"version": "2.3.1",
|
||||
"description": "JSON.parse with context information on error",
|
||||
"main": "index.js",
|
||||
"files": [
|
||||
"*.js"
|
||||
],
|
||||
"scripts": {
|
||||
"preversion": "npm t",
|
||||
"postversion": "npm publish",
|
||||
"prepublishOnly": "git push --follow-tags",
|
||||
"test": "tap",
|
||||
"snap": "tap"
|
||||
},
|
||||
"repository": "https://github.com/npm/json-parse-even-better-errors",
|
||||
"keywords": [
|
||||
"JSON",
|
||||
"parser"
|
||||
],
|
||||
"author": {
|
||||
"name": "Kat Marchán",
|
||||
"email": "kzm@zkat.tech",
|
||||
"twitter": "maybekatz"
|
||||
},
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"tap": "^14.6.5"
|
||||
},
|
||||
"tap": {
|
||||
"check-coverage": true
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user