chore: Reformat all files

This commit is contained in:
T. R. Bernstein
2025-04-17 12:33:43 +02:00
parent f443df52a7
commit c716470b5b
107 changed files with 3632 additions and 3632 deletions

View File

@@ -1,11 +1,11 @@
const cwd = require('./cwd').handler;
const cwd = require('./cwd').handler
module.exports = {
directive: ['CDUP', 'XCUP'],
handler: function (args) {
args.command.arg = '..';
return cwd.call(this, args);
args.command.arg = '..'
return cwd.call(this, args)
},
syntax: '{{cmd}}',
description: 'Change to Parent Directory'
};
}