From 8b2f1a47b584ceb98689f48538a2af73cd65dfd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20Wypch=C5=82o?= Date: Wed, 15 Oct 2014 10:05:33 +0200 Subject: [PATCH] fix(loader): fix double spaces Fix double spaces in return statement. Double spaces between return and returned value brake minification process of some minifiers (bug found on JSMin https://github.com/mrclay/jsmin-php). Closes #9630 --- src/loader.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/loader.js b/src/loader.js index 5bc3b3b7..15ab4bca 100644 --- a/src/loader.js +++ b/src/loader.js @@ -296,7 +296,7 @@ function setupModuleLoader(window) { config(configFn); } - return moduleInstance; + return moduleInstance; /** * @param {string} provider