ztimson 0046dc1cb4
All checks were successful
Build Website / Build NPM Project (push) Successful in 22s
Build Website / Tag Version (push) Successful in 6s
Build Website / Build & Push Dockerfile (push) Successful in 1m18s
Pulled konsole out into it's own module
2024-01-07 12:29:00 -05:00

12 lines
211 B
JavaScript

window.cli.exec['clear'] = {
autocomplete: () => {
return [];
},
help: () => {
return 'Clear console output';
},
run: args => {
setTimeout(() => window.cli._output.innerHTML = '', 1);
}
}