Created
February 17, 2015 14:43
-
-
Save you-think-you-are-special/a360c50bc3e26d1ad30e to your computer and use it in GitHub Desktop.
Import several modules in ES6 style
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Promise.all( | |
['module1', 'module2', 'module3'] | |
.map(x => System.import(x))) | |
.then(([module1, module2, module3]) => { | |
// Use module1, module2, module3 | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment