mirror of
https://github.com/abrendan/MicDropMessages.git
synced 2025-06-16 20:55:00 +02: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;
|