mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 05:12:39 +00:00
4 lines
107 B
TypeScript
4 lines
107 B
TypeScript
export const getTextValidLength = (chunk: string) => {
|
|
return chunk.replaceAll(/[\s\n]/g, '').length;
|
|
};
|