1234567891011121314151617 |
- "use strict";
- module.exports = inquire;
-
-
- function inquire(moduleName) {
- try {
- var mod = eval("quire".replace(/^/,"re"))(moduleName);
- if (mod && (mod.length || Object.keys(mod).length))
- return mod;
- } catch (e) {}
- return null;
- }
|