mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-18 14:53:14 +00:00
10 lines
271 B
JavaScript
10 lines
271 B
JavaScript
importScripts('../../node_modules/bluebird/js/browser/bluebird.core.js');
|
|
importScripts('../../dist/system.js');
|
|
|
|
System.import('../fixtures/register-modules/es6-withdep.js').then(function(m) {
|
|
postMessage({
|
|
p: m.p
|
|
});
|
|
}, function(err) {
|
|
console.error(err);
|
|
}); |