UNPKG

@alancnet/ftp-srv

Version:

Modern, extensible FTP Server

12 lines (10 loc) 253 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' };