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