We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 382b60f commit a313c0dCopy full SHA for a313c0d
public/external/systemJS/es6Detection.js renamed to public/js/es6Detection.js
@@ -1,5 +1,5 @@
1
(function () {
2
- import('./mockModule.js');
+ import('./modules/mockModule.js');
3
const arrowFunctionDetection = (param = {}) => {
4
let destructuringDetection = { a: 2 };
5
const { a } = destructuringDetection;
@@ -9,6 +9,6 @@
9
let result = arrowFunctionDetection();
10
$$.supportNativeModule = true;
11
$$.importModule = function (modulePath) {
12
- return import('../../js/modules/' + modulePath);
+ return import('./modules/' + modulePath);
13
};
14
})();
public/external/systemJS/es6Pollifyls.js renamed to public/js/es6Pollifyls.js
@@ -13,6 +13,7 @@
});
15
if (typeof Promise === 'undefined') {
16
+ // load IE pollifyls
17
var loadSystemJS = (function () {
18
var i = -1;
19
return function () {
public/external/systemJS/mockModule.js renamed to public/js/modules/mockModule.js
0 commit comments