Files
FastGPT/packages/global/common/string/utils.ts
Archer 22fc7dddfb perf: text splitter (#4584)
* perf: text splitter

* update doc
2025-04-17 19:08:04 +08:00

4 lines
107 B
TypeScript

export const getTextValidLength = (chunk: string) => {
return chunk.replaceAll(/[\s\n]/g, '').length;
};