Skip to content

Instantly share code, notes, and snippets.

@you-think-you-are-special
Created February 17, 2015 14:43
Show Gist options
  • Save you-think-you-are-special/a360c50bc3e26d1ad30e to your computer and use it in GitHub Desktop.
Save you-think-you-are-special/a360c50bc3e26d1ad30e to your computer and use it in GitHub Desktop.
Import several modules in ES6 style
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