mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
11 lines
203 B
JavaScript
11 lines
203 B
JavaScript
'use strict';
|
|
|
|
const config = require('./config');
|
|
const mellow = require('mellow');
|
|
|
|
module.exports = (dir) => {
|
|
const root = config('root') || '/';
|
|
|
|
return mellow.pathToWin(dir, root);
|
|
};
|
|
|