cloudcmd/lib/server/root.js
2015-04-08 03:20:10 -04:00

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;
};
})();