Remove use of 'let'
'let' appeared to break one of the builds so changed it to 'var'.
This commit is contained in:
parent
abb6aa544f
commit
52cd38d268
|
|
@ -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