MCPcopy Index your code
hub / github.com/claude-code-best/claude-code / normalizeFullWidthSpace

Function normalizeFullWidthSpace

src/utils/stringUtils.ts:82–84  ·  view source on GitHub ↗
(input: string)

Source from the content-addressed store, hash-verified

80 * Useful for accepting input from Japanese/CJK IMEs (U+3000 → U+0020).
81 */
82export 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.

Callers 5

useMultiSelectStateFunction · 0.85
useSelectInputFunction · 0.85
useVoiceIntegrationFunction · 0.85
handleKeyDownFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected