You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for JSON comments (from JSON 5 onwards). This is NOT a standard feature (it is NOT present in the original json module), but it would be a very welcomed addition to this polyfill.
{
/* This is a block comment */"key": "value",
"key2": "value2", // This is an inline comment
}
Add support for JSON comments (from JSON 5 onwards). This is NOT a standard feature (it is NOT present in the original
jsonmodule), but it would be a very welcomed addition to this polyfill.{ /* This is a block comment */ "key": "value", "key2": "value2", // This is an inline comment }