tcp.radio_front-end/src/utils/commandExists.ts
2022-04-08 16:25:01 -04:00

8 lines
195 B
TypeScript

import * as bin from './bin';
export const commandExists = (command: string) => {
const commands = ['clear', ...Object.keys(bin)];
return commands.indexOf(command.split(' ')[0]) !== -1;
};