Skip to content

Commit a313c0d

Browse files
committed
move es6Detection.js and es6Pllifyls.js
into js folder
1 parent 382b60f commit a313c0d

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(function () {
2-
import('./mockModule.js');
2+
import('./modules/mockModule.js');
33
const arrowFunctionDetection = (param = {}) => {
44
let destructuringDetection = { a: 2 };
55
const { a } = destructuringDetection;
@@ -9,6 +9,6 @@
99
let result = arrowFunctionDetection();
1010
$$.supportNativeModule = true;
1111
$$.importModule = function (modulePath) {
12-
return import('../../js/modules/' + modulePath);
12+
return import('./modules/' + modulePath);
1313
};
1414
})();

public/external/systemJS/es6Pollifyls.js renamed to public/js/es6Pollifyls.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
});
1414
});
1515
if (typeof Promise === 'undefined') {
16+
// load IE pollifyls
1617
var loadSystemJS = (function () {
1718
var i = -1;
1819
return function () {
File renamed without changes.

0 commit comments

Comments
 (0)