UNPKG

ftp-srv-fix

Version:
12 lines (10 loc) 264 B
const cwd = require('./cwd').handler; module.exports = { directive: ['CDUP', 'XCUP'], handler: function (args) { args.command.arg = '..'; return cwd.call(this, args); }, syntax: '{{cmd}}', description: 'Change to Parent Directory' };