Skip to main content
On this page

@std/jsonc

Overview Jump to heading

Provides tools for working with JSONC (JSON with comments).

Currently, this module only provides a means of parsing JSONC. JSONC serialization is not yet supported.

import { parse } from "@std/jsonc";
import { assertEquals } from "@std/assert";

assertEquals(parse('{"foo": "bar", } // comment'), { foo: "bar" });
assertEquals(parse('{"foo": "bar", } /* comment *\/'), { foo: "bar" });

Add to your project Jump to heading

deno add jsr:@std/jsonc

See all symbols in @std/jsonc on

Did you find what you needed?

Privacy policy