[d565449] | 1 | "use strict";
|
---|
| 2 |
|
---|
| 3 | Object.defineProperty(exports, "__esModule", {
|
---|
| 4 | value: true
|
---|
| 5 | });
|
---|
| 6 | Object.defineProperty(exports, "ImportInjector", {
|
---|
| 7 | enumerable: true,
|
---|
| 8 | get: function () {
|
---|
| 9 | return _importInjector.default;
|
---|
| 10 | }
|
---|
| 11 | });
|
---|
| 12 | exports.addDefault = addDefault;
|
---|
| 13 | exports.addNamed = addNamed;
|
---|
| 14 | exports.addNamespace = addNamespace;
|
---|
| 15 | exports.addSideEffect = addSideEffect;
|
---|
| 16 | Object.defineProperty(exports, "isModule", {
|
---|
| 17 | enumerable: true,
|
---|
| 18 | get: function () {
|
---|
| 19 | return _isModule.default;
|
---|
| 20 | }
|
---|
| 21 | });
|
---|
| 22 | var _importInjector = require("./import-injector.js");
|
---|
| 23 | var _isModule = require("./is-module.js");
|
---|
| 24 | function addDefault(path, importedSource, opts) {
|
---|
| 25 | return new _importInjector.default(path).addDefault(importedSource, opts);
|
---|
| 26 | }
|
---|
| 27 | function addNamed(path, name, importedSource, opts) {
|
---|
| 28 | return new _importInjector.default(path).addNamed(name, importedSource, opts);
|
---|
| 29 | }
|
---|
| 30 | function addNamespace(path, importedSource, opts) {
|
---|
| 31 | return new _importInjector.default(path).addNamespace(importedSource, opts);
|
---|
| 32 | }
|
---|
| 33 | function addSideEffect(path, importedSource, opts) {
|
---|
| 34 | return new _importInjector.default(path).addSideEffect(importedSource, opts);
|
---|
| 35 | }
|
---|
| 36 |
|
---|
| 37 | //# sourceMappingURL=index.js.map
|
---|