mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
15 lines
319 B
JavaScript
15 lines
319 B
JavaScript
(function() {
|
|
'use strict';
|
|
|
|
var DIR = './',
|
|
config = require(DIR + 'config'),
|
|
mellow = require('mellow');
|
|
|
|
module.exports = function(dir) {
|
|
var root = config('root') || '/';
|
|
|
|
dir = mellow.pathToWin(dir, root);
|
|
|
|
return dir;
|
|
};
|
|
})();
|