ProzillaOS/src/features/apps/terminal/commands/rev.js
2024-05-02 22:48:32 +02:00

9 lines
No EOL
238 B
JavaScript

import Command from "../command.js";
export const rev = new Command()
.setManual({
purpose: "Display the reverse of a text"
})
.setExecute(function(args, { rawInputValue }) {
return rawInputValue.split("").reverse().join("");
});