source: frontend/node_modules/@babel/helper-module-imports/lib/index.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 2 weeks ago

Fix frontend appearance

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