prism-code-editor
Version:
Lightweight, extensible code editor component for the web using Prism
21 lines (20 loc) • 525 B
JavaScript
import { l as r } from "../prismCore-5c7f03d0.js";
import "./json.js";
var e = /("|')(?:\\(?:\r\n?|\n|.)|(?!\1)[^\\\r\n])*\1/;
r.json5 = r.extend("json", {
property: [
{
pattern: RegExp(e.source + "(?=\\s*:)"),
greedy: !0
},
{
pattern: /(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*:)/,
alias: "unquoted"
}
],
string: {
pattern: e,
greedy: !0
},
number: /[+-]?\b(?:NaN|Infinity|0x[a-fA-F\d]+)\b|[+-]?(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[eE][+-]?\d+\b)?/
});