(input: string)
| 80 | * Useful for accepting input from Japanese/CJK IMEs (U+3000 → U+0020). |
| 81 | */ |
| 82 | export function normalizeFullWidthSpace(input: string): string { |
| 83 | return input.replace(/\u3000/g, ' ') |
| 84 | } |
| 85 | |
| 86 | // Keep in-memory accumulation modest to avoid blowing up RSS. |
| 87 | // Overflow beyond this limit is spilled to disk by ShellCommand. |
no outgoing calls
no test coverage detected