cloudcmd/server/root.js
2024-03-21 08:49:14 +02:00

7 lines
161 B
JavaScript

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