Created
June 26, 2010 05:43
-
-
Save getify/453816 to your computer and use it in GitHub Desktop.
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 is a JSON file with comments | |
{ | |
"foo": "bar", // this is cool | |
"bar": [ | |
"baz", "bum", "zam" | |
], | |
/* the rest of this document is just fluff | |
in case you are interested. */ | |
"something": 10, | |
"else": 20 | |
} | |
/* NOTE: You can easily strip the whitespace and comments | |
from such a file with the JSON.minify() project hosted | |
here on github at http://github.com/getify/JSON.minify | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment