(path)
| 13 | uglify = require("uglify-js"), |
| 14 | |
| 15 | readFile = function (path) { |
| 16 | return fs.readFileSync(path) |
| 17 | .toString(); |
| 18 | }, |
| 19 | |
| 20 | writeFile = function (path, content) { |
| 21 | fsx.mkdirpSync(path.replace(/[^\/]+\/?$/, "")); |
nothing calls this directly
no outgoing calls
no test coverage detected