Spaces:
Sleeping
Sleeping
File size: 151 Bytes
2434dca |
1 2 3 4 5 6 7 8 |
var path = require('path');
function rebaseToFrom(option) {
return option ? path.resolve(option) : process.cwd();
}
module.exports = rebaseToFrom;
|