vuoto
Version:
Modern whitespace normalizer CLI with enhanced output and developer experience - cut the noise, clean the void
14 lines • 400 B
TypeScript
/**
* Replaces narrow no-break space (U+202F) with a normal space.
* @param input The string to normalize.
*
* @returns The normalized string.
*
* @example
*
* ```ts
* const normalized = normalizeNarrowNoBreakSpace('Hello\u202FWorld'); // 'Hello World'
* ```
*/
export declare function normalizeNarrowNoBreakSpace(input: string): string;
//# sourceMappingURL=narrow-no-break-space.d.ts.map