From 252a48f04f688da994170f80832c68d95142c50a Mon Sep 17 00:00:00 2001 From: "Ashley (Scirra)" Date: Wed, 5 Oct 2016 13:52:16 +0100 Subject: [PATCH] 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 --- test/mocha/mangle-debug.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/mocha/mangle-debug.js b/test/mocha/mangle-debug.js index 6b1c8405..45e8b3cb 100644 --- a/test/mocha/mangle-debug.js +++ b/test/mocha/mangle-debug.js @@ -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();