-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Made JSON.stringify comptible with javascript JSON (#266)
* Made JSON.stringify comptible with javascript JSON The current JSON.stringify method escaped characters in a way that was NOT compatible with the current javascript JSON implementation. For example, the string single-character "\n" was being translated into: "\"\ \"" Instead of being stringifyed as: "\"\n\"". This is because the character \n was being added, instead of adding an "n" preceeded by an "\\". * Formatting assembly/JSON.ts Co-authored-by: Max Graey <[email protected]> Co-authored-by: Willem Wyndham <[email protected]>
- Loading branch information
1 parent
71df6f7
commit 1edab43
Showing
2 changed files
with
37 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters