aboutsummaryrefslogtreecommitdiff
path: root/tests/Module-exports/setup.js
AgeCommit message (Collapse)Author
2013-10-02fixed problem where module.exports, which is needed by node.js gets ↵Fraser Adams
incorrectly minified by Closure. Simple change from module.exports = Module to module['exports'] = Module fixes this. Added simple test case compiling with --O2 -closure 1 to /tests/Module-exports