Skip to main content
Module

x/esbuild_deno_loader/deps.ts>JSONC.parse

Deno module resolution for `esbuild`
Latest
function JSONC.parse
import { JSONC } from "https://deno.land/x/esbuild_deno_loader@0.9.0/deps.ts";
const { parse } = JSONC;

Converts a JSON with Comments (JSONC) string into an object. If a syntax error is found, throw a SyntaxError.

Examples

Example 1

import { parse } from "https://deno.land/std@0.224.0/jsonc/mod.ts";

console.log(parse('{"foo": "bar", } // comment')); // { foo: "bar" }
console.log(parse('{"foo": "bar", } /* comment *\/')); // { foo: "bar" }
console.log(parse('{"foo": "bar" } // comment', {
  allowTrailingComma: false,
})); // { foo: "bar" }

Parameters

text: string

A valid JSONC string.

optional
unnamed 1: ParseOptions = [UNSUPPORTED]