From 421753ad21b23f4f0933968148fa1965c2ab992a 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). --- src/loader.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/loader.js b/src/loader.js index 5bc3b3b7251f..15ab4bcaa172 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