mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
8 lines
135 B
JavaScript
8 lines
135 B
JavaScript
'use strict';
|
|
|
|
const mellow = require('mellow');
|
|
|
|
module.exports = (dir, root) => {
|
|
return mellow.pathToWin(dir, root || '/');
|
|
};
|
|
|