Files
algo-dcbot/functions/react-preprocess.ts
2024-08-09 16:56:18 +00:00

3 lines
95 B
TypeScript

export function reactPreprocess(str: string){
return str.toLowerCase().replaceAll(' ', '');
}