UNPKG

vuoto

Version:

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

14 lines 390 B
/** * Replaces non-breaking space (U+00A0) with a normal space. * @param input The string to normalize. * * @returns The normalized string. * * @example * * ```ts * const normalized = normalizeNonBreakingSpace('Hello\u00A0World'); // 'Hello World' * ``` */ export declare function normalizeNonBreakingSpace(input: string): string; //# sourceMappingURL=non-breaking-space.d.ts.map