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
test("ignore trailing comma in object member list with comment at end of line",()=>{consttext=`{"obj": { "a" : 1, // Comment}}`;constexpected=`{"obj": { "a": 1}}`;letjson=tolerantParse(text);letresult=JSON.stringify(json,null,4);result.should.equal(expected);});