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