1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-07 21:40:46 +00:00
notes/node_modules/resolve-from/index.js
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00

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;
}
};