Skip to content

Commit 5ba4521

Browse files
committed
more tweak to npm package file
1 parent 5245dc6 commit 5ba4521

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

node-json-minify/json.minify.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
/*! JSON.minify()
2-
v0.1 (c) Kyle Simpson
2+
v0.1.3-a (c) Kyle Simpson
33
MIT License
44
*/
55

6-
//(function(){
7-
8-
exports = function(json) {
6+
module.exports = function(json) {
97

108
var tokenizer = /"|(\/\*)|(\*\/)|(\/\/)|\n|\r/g,
119
in_string = false,
@@ -55,4 +53,4 @@ exports = function(json) {
5553
new_str[ns++] = rc;
5654
return new_str.join("");
5755
};
58-
//})(this);
56+

0 commit comments

Comments
 (0)