UNPKG

ftp-srv-esm

Version:

Modern, extensible FTP server (daemon) for Node.js with ESM support. Based on ftp-srv.

12 lines (10 loc) 260 B
import cwd from './cwd.js'; export default { directive: ['CDUP', 'XCUP'], handler: function (args) { args.command.arg = '..'; return cwd.handler.call(this, args); }, syntax: '{{cmd}}', description: 'Change to Parent Directory' };