It is called normalize , and it returns a promise that resolves an absolute URL, as determined by the current SystemJS configuration:
SystemJS.normalize('./myComponent').then(function(url) { });
Returning a promise means that there is no guarantee that it will not perform network booting — for example, if plugins or user loaders are involved, you may need to download plugins first.
In addition, it takes an optional second argument, the name of the parent module, because in the configuration you can define package-specific mappings.
artem source share