mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 01:27:31 -04:00
24 lines
532 B
JavaScript
24 lines
532 B
JavaScript
|
'use strict';
|
||
|
var path = require('path');
|
||
|
var Module = require('module');
|
||
|
|
||
|
module.exports = function (fromDir, moduleId) {
|
||
|
if (typeof fromDir !== 'string' || typeof moduleId !== 'string') {
|
||
|
throw new TypeError('Expected `fromDir` and `moduleId` to be a string');
|
||
|
}
|
||
|
|
||
|
fromDir = path.resolve(fromDir);
|
||
|
|
||
|
var fromFile = path.join(fromDir, 'noop.js');
|
||
|
|
||
|
try {
|
||
|
return Module._resolveFilename(moduleId, {
|
||
|
id: fromFile,
|
||
|
filename: fromFile,
|
||
|
paths: Module._nodeModulePaths(fromDir)
|
||
|
});
|
||
|
} catch (err) {
|
||
|
return null;
|
||
|
}
|
||
|
};
|