-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
42 lines (37 loc) · 831 Bytes
/
Copy pathindex.js
File metadata and controls
42 lines (37 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* eslint global-require:0, import/no-dynamic-require:0 */
/**
* @module import
*/
/**
* The Import class
* @class
*/
class Import {
/**
* Create an instance of Import class
* @param {String} rootDir - the root directory of app
*/
constructor(rootDir) {
this.rootDir = rootDir;
}
/**
* load a module
* @param {String} name - name of the module. Use a dot as prefix if its an internal module.
*/
load(name) {
let toRet;
if (name.charAt(0) === '.') {
try {
// eslint-disable-next-line import/no-dynamic-require
toRet = require(this.rootDir + name.substring(1));
} catch (er) {
// default is set below
}
}
if (!toRet) {
toRet = require(name);
}
return toRet.default ? toRet.default : toRet;
}
}
export default Import;