10 lines
No EOL
207 B
JavaScript
10 lines
No EOL
207 B
JavaScript
import Command from "../command.js";
|
|
|
|
export const exit = new Command()
|
|
.setManual({
|
|
purpose: "Quit terminal interface"
|
|
})
|
|
.setExecute(function(args, { exit }) {
|
|
exit();
|
|
return { blank: true };
|
|
}); |