Replace tabs with spaces + replace let with var

Because I haven't made enough of a mess already, the last commit switched back to let... so this one uses var and has spaces :P
This commit is contained in:
Ashley (Scirra) 2016-10-05 13:52:16 +01:00 committed by GitHub
parent 57c9b97ec4
commit 252a48f04f

View File

@ -11,7 +11,7 @@ describe("mangle_properties 'debug' option ", function() {
debug: true debug: true
}); });
let stream = Uglify.OutputStream(); var stream = Uglify.OutputStream();
ast.print(stream); ast.print(stream);
var result = stream.toString(); var result = stream.toString();
@ -33,7 +33,7 @@ describe("mangle_properties 'debug' option ", function() {
debug: true debug: true
}); });
let stream = Uglify.OutputStream(); var stream = Uglify.OutputStream();
ast.print(stream); ast.print(stream);
var result = stream.toString(); var result = stream.toString();