cloudcmd/lib/server/root.js
2016-12-20 10:28:52 +02:00

11 lines
203 B
JavaScript

'use strict';
const config = require('./config');
const mellow = require('mellow');
module.exports = (dir) => {
const root = config('root') || '/';
return mellow.pathToWin(dir, root);
};