We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5245dc6 commit 5ba4521Copy full SHA for 5ba4521
1 file changed
node-json-minify/json.minify.js
@@ -1,11 +1,9 @@
1
/*! JSON.minify()
2
- v0.1 (c) Kyle Simpson
+ v0.1.3-a (c) Kyle Simpson
3
MIT License
4
*/
5
6
-//(function(){
7
-
8
-exports = function(json) {
+module.exports = function(json) {
9
10
var tokenizer = /"|(\/\*)|(\*\/)|(\/\/)|\n|\r/g,
11
in_string = false,
@@ -55,4 +53,4 @@ exports = function(json) {
55
53
new_str[ns++] = rc;
56
54
return new_str.join("");
57
};
58
-//})(this);
+
0 commit comments