1 2 3 4 5 6 7 8 9 10 11 12 13 14
var path = require('path'); var isPathAbsolute = require('./isPathAbsolute'); function relativeToBaseDir(baseDir) { return function (filePath) { if (isPathAbsolute(filePath)) { return path.resolve(filePath); } else { return path.resolve(baseDir, filePath); } }; } module.exports = relativeToBaseDir;