UNPKG

vuoto

Version:

Modern whitespace normalizer CLI with enhanced output and developer experience - cut the noise, clean the void

14 lines 352 B
/** * Replaces em space (U+2003) with a normal space. * @param input The string to normalize. * * @returns The normalized string. * * @example * * ```ts * const normalized = normalizeEmSpace('Hello\u2003World'); // 'Hello World' * ``` */ export declare function normalizeEmSpace(input: string): string; //# sourceMappingURL=em-space.d.ts.map