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:
parent
57c9b97ec4
commit
252a48f04f
|
|
@ -11,7 +11,7 @@ describe("mangle_properties 'debug' option ", function() {
|
|||
debug: true
|
||||
});
|
||||
|
||||
let stream = Uglify.OutputStream();
|
||||
var stream = Uglify.OutputStream();
|
||||
ast.print(stream);
|
||||
var result = stream.toString();
|
||||
|
||||
|
|
@ -33,7 +33,7 @@ describe("mangle_properties 'debug' option ", function() {
|
|||
debug: true
|
||||
});
|
||||
|
||||
let stream = Uglify.OutputStream();
|
||||
var stream = Uglify.OutputStream();
|
||||
ast.print(stream);
|
||||
var result = stream.toString();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user