wallet-core/thirdparty/systemjs/lib/system-only-resolve.js

24 lines
877 B
JavaScript
Raw Normal View History

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;
};
*/