Add input file glob support to minify()

This commit is contained in:
kzc
2016-07-29 21:27:30 -04:00
committed by Richard van Velzen
parent 72306b9885
commit dcdcfe4d39
6 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
var print = console.log.bind(console);
function foo(x) {
var twice = x * 2;
print('Foo:', twice);
}