-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathjson5.js
31 lines (30 loc) · 843 Bytes
/
json5.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// @ts-nocheck
import refractorJson from './json.js'
json5.displayName = 'json5'
json5.aliases = []
/** @type {import('../core.js').Syntax} */
export default function json5(Prism) {
Prism.register(refractorJson)
;(function (Prism) {
var string = /("|')(?:\\(?:\r\n?|\n|.)|(?!\1)[^\\\r\n])*\1/
Prism.languages.json5 = Prism.languages.extend('json', {
property: [
{
pattern: RegExp(string.source + '(?=\\s*:)'),
greedy: true
},
{
pattern:
/(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*:)/,
alias: 'unquoted'
}
],
string: {
pattern: string,
greedy: true
},
number:
/[+-]?\b(?:NaN|Infinity|0x[a-fA-F\d]+)\b|[+-]?(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[eE][+-]?\d+\b)?/
})
})(Prism)
}