Skip to content

Commit 8b2f1a4

Browse files
kwypchloIgorMinar
authored andcommitted
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 angular#9630
1 parent fb1b202 commit 8b2f1a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/loader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ function setupModuleLoader(window) {
296296
config(configFn);
297297
}
298298

299-
return moduleInstance;
299+
return moduleInstance;
300300

301301
/**
302302
* @param {string} provider

0 commit comments

Comments
 (0)