mirror of
https://github.com/wishthis/wishthis.git
synced 2026-01-09 23:58:32 -05:00
8 lines
151 B
JavaScript
8 lines
151 B
JavaScript
var path = require('path');
|
|
|
|
function rebaseToFrom(option) {
|
|
return option ? path.resolve(option) : process.cwd();
|
|
}
|
|
|
|
module.exports = rebaseToFrom;
|