This app provides monitoring and information features for the common freifunk user and the technical stuff of a freifunk community.
Code base is taken from a TUM Practical Course project and added here to see if Freifunk Altdorf can use it.
https://www.freifunk-altdorf.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.2 KiB
43 lines
1.2 KiB
"use strict"; |
|
|
|
Object.defineProperty(exports, "__esModule", { |
|
value: true |
|
}); |
|
exports.addDefault = addDefault; |
|
exports.addNamed = addNamed; |
|
exports.addNamespace = addNamespace; |
|
exports.addSideEffect = addSideEffect; |
|
Object.defineProperty(exports, "ImportInjector", { |
|
enumerable: true, |
|
get: function () { |
|
return _importInjector.default; |
|
} |
|
}); |
|
Object.defineProperty(exports, "isModule", { |
|
enumerable: true, |
|
get: function () { |
|
return _isModule.default; |
|
} |
|
}); |
|
|
|
var _importInjector = _interopRequireDefault(require("./import-injector")); |
|
|
|
var _isModule = _interopRequireDefault(require("./is-module")); |
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } |
|
|
|
function addDefault(path, importedSource, opts) { |
|
return new _importInjector.default(path).addDefault(importedSource, opts); |
|
} |
|
|
|
function addNamed(path, name, importedSource, opts) { |
|
return new _importInjector.default(path).addNamed(name, importedSource, opts); |
|
} |
|
|
|
function addNamespace(path, importedSource, opts) { |
|
return new _importInjector.default(path).addNamespace(importedSource, opts); |
|
} |
|
|
|
function addSideEffect(path, importedSource, opts) { |
|
return new _importInjector.default(path).addSideEffect(importedSource, opts); |
|
} |