Files
amane-tanikaze-dcbot/functions/react-preprocess.ts
2024-10-13 14:50:19 +00:00

3 lines
95 B
TypeScript

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