This repository was archived by the owner on Jul 13, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ Any tool can be used to build the loader distribution file from these core modul
49
49
50
50
The ` Loader ` and ` ModuleNamespace ` classes in ` core/loader-polyfill.js ` provide the basic spec API method shells for a loader instance ` loader ` :
51
51
52
- - * ` new Loader(baseKey ) ` * : Instantiate a new ` loader ` instance, with the given ` baseKey ` as the default parentKey for normalizations .
52
+ - * ` new Loader() ` * : Instantiate a new ` loader ` instance.
53
53
Defaults to environment baseURI detection in NodeJS and browsers.
54
54
- * ` loader.import(key [, parentKey]) ` * : Promise for importing and executing a given module, returning its module instance.
55
55
- * ` loader.resolve(key [, parentKey]) ` * : Promise for resolving the idempotent fully-normalized string key for a module.
@@ -213,7 +213,7 @@ This is identical to the `System.register` process above, only running `loader.r
213
213
this .registerDynamic ([' dep' ], function (require , exports , module ) {
214
214
module .exports = require (' dep' ).y ;
215
215
});
216
-
216
+
217
217
processAnonRegister ();
218
218
}
219
219
```
You can’t perform that action at this time.
0 commit comments