cloudcmd/server/root.js
2016-12-23 11:46:17 +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);
};