source: trip-planner-front/node_modules/@babel/helper-module-imports/lib/index.js@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.1 KB
Line 
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.addDefault = addDefault;
7exports.addNamed = addNamed;
8exports.addNamespace = addNamespace;
9exports.addSideEffect = addSideEffect;
10Object.defineProperty(exports, "ImportInjector", {
11 enumerable: true,
12 get: function () {
13 return _importInjector.default;
14 }
15});
16Object.defineProperty(exports, "isModule", {
17 enumerable: true,
18 get: function () {
19 return _isModule.default;
20 }
21});
22
23var _importInjector = require("./import-injector");
24
25var _isModule = require("./is-module");
26
27function addDefault(path, importedSource, opts) {
28 return new _importInjector.default(path).addDefault(importedSource, opts);
29}
30
31function addNamed(path, name, importedSource, opts) {
32 return new _importInjector.default(path).addNamed(name, importedSource, opts);
33}
34
35function addNamespace(path, importedSource, opts) {
36 return new _importInjector.default(path).addNamespace(importedSource, opts);
37}
38
39function addSideEffect(path, importedSource, opts) {
40 return new _importInjector.default(path).addSideEffect(importedSource, opts);
41}
Note: See TracBrowser for help on using the repository browser.