保誠-保戶業務員媒合平台
HelenHuang
2022-06-09 9bdb95c9e34cef640534e5e5a1e2225a80442000
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
'use strict';
const path = require('path');
const resolveFrom = require('resolve-from');
const callerPath = require('caller-path');
 
module.exports = moduleId => {
    if (typeof moduleId !== 'string') {
        throw new TypeError('Expected a string');
    }
 
    const filePath = resolveFrom(path.dirname(callerPath()), moduleId);
 
    // Delete itself from module parent
    if (require.cache[filePath] && require.cache[filePath].parent) {
        let i = require.cache[filePath].parent.children.length;
 
        while (i--) {
            if (require.cache[filePath].parent.children[i].id === filePath) {
                require.cache[filePath].parent.children.splice(i, 1);
            }
        }
    }
 
    // Delete module from cache
    delete require.cache[filePath];
 
    // Return fresh module
    return require(filePath);
};