cloudcmd/lib/server/root.js
2016-11-10 15:32:58 +02:00

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