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
Notice that \n disappeared before //comment 2;
As use case it means that if user commented last property of object, after parse/stringify methods, commented property will jump to the previous line
So this object
{
a:1
// b:2
}
after parse/stringify methods will become this
{
a:1 // b:2
}
The text was updated successfully, but these errors were encountered:
I have faced strange behavior of comment processing if it is last entry in object
Notice that
\n
disappeared before//comment 2
;As use case it means that if user commented last property of object, after parse/stringify methods, commented property will jump to the previous line
So this object
after parse/stringify methods will become this
The text was updated successfully, but these errors were encountered: