1.0.1 • Published 4 years ago

@frm/jsonc v1.0.1

Weekly downloads
3
License
ISC
Repository
-
Last release
4 years ago

JSONC

JSON with comments polyfill

import * as JSON from "@frm/jsonc";

var str = `
{
    //test
    /*test*/
    "test":"test"
}
`;
var test = JSON.parse(str) // => { test: "test" }
import { polyfill, noConflict } from "@frm/jsonc";
polyfill();

var str = `
{
    //test
    /*test*/
    "test":"test"
}
`;
var test = JSON.parse(str) // => { test: "test" }

noConflict();
JSON.parse(str);  // throw Error