ember-cli-ajh
Version:
Command line tool for developing ambitious ember.js apps
15 lines (12 loc) • 358 B
JavaScript
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;