Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

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 #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

+1-1
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)