blob: e8618c84495db2fb4e4b68472c4ffa799bec4714 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
var absURLRegEx = /^([^\/]+:\/\/|\/)/;
// Normalization with module names as absolute URLs
SystemJSLoader.prototype.normalize = function(name, parentName, parentAddress) {
// NB does `import 'file.js'` import relative to the parent name or baseURL?
// have assumed that it is baseURL-relative here, but spec may well align with URLs to be the latter
// safe option for users is to always use "./file.js" for relative
// not absolute or relative -> apply paths (what will be sites)
if (!name.match(absURLRegEx) && name[0] != '.')
name = new URL(applyPaths(this, name) || name, baseURI).href;
// apply parent-relative normalization, parentAddress is already normalized
else
name = new URL(name, parentName || baseURI).href;
return name;
};
// default locate is this
/*
SystemJSLoader.prototype.locate = function(load) {
return load.name;
};
*/
|