.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / table / node_modules / ajv / lib / runtime / quote.ts
1 // eslint-disable-next-line no-control-regex, no-misleading-character-class
2 const rxEscapable = /[\\"\u0000-\u001f\u007f-\u009f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g
3
4 const escaped: {[K in string]?: string} = {
5   "\b": "\\b",
6   "\t": "\\t",
7   "\n": "\\n",
8   "\f": "\\f",
9   "\r": "\\r",
10   '"': '\\"',
11   "\\": "\\\\",
12 }
13
14 export default function quote(s: string): string {
15   rxEscapable.lastIndex = 0
16   return (
17     '"' +
18     (rxEscapable.test(s)
19       ? s.replace(rxEscapable, (a) => {
20           const c = escaped[a]
21           return typeof c === "string"
22             ? c
23             : "\\u" + ("0000" + a.charCodeAt(0).toString(16)).slice(-4)
24         })
25       : s) +
26     '"'
27   )
28 }
29
30 quote.code = 'require("ajv/dist/runtime/quote").default'