UNPKG

@earendil-works/pi-coding-agent

Version:

Coding agent CLI with read, bash, edit, write tools and session management

7 lines 372 B
/** Strip `//` line comments and trailing commas from JSON, leaving string literals untouched. */ export function stripJsonComments(input) { return input .replace(/"(?:\\.|[^"\\])*"|\/\/[^\n]*/g, (m) => (m[0] === '"' ? m : "")) .replace(/"(?:\\.|[^"\\])*"|,(\s*[}\]])/g, (m, tail) => tail ?? (m[0] === '"' ? m : "")); } //# sourceMappingURL=json.js.map