tcp.radio_front-end/src/utils/commandExists.ts

8 lines
195 B
TypeScript
Raw Permalink Normal View History

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