mirror of
https://github.com/earendil-works/pi.git
synced 2026-06-18 15:54:04 +08:00
3e9f717445
closes #5095
7 lines
341 B
TypeScript
7 lines
341 B
TypeScript
/** Strip `//` line comments and trailing commas from JSON, leaving string literals untouched. */
|
|
export function stripJsonComments(input: string): string {
|
|
return input
|
|
.replace(/"(?:\\.|[^"\\])*"|\/\/[^\n]*/g, (m) => (m[0] === '"' ? m : ""))
|
|
.replace(/"(?:\\.|[^"\\])*"|,(\s*[}\]])/g, (m, tail) => tail ?? (m[0] === '"' ? m : ""));
|
|
}
|