UNPKG

vuoto

Version:

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

14 lines 401 B
/** * Replaces paragraph separator (U+2029) with a double newline. * @param input The string to normalize. * * @returns The normalized string. * * @example * * ```ts * const normalized = normalizeParagraphSeparator('Hello\u2029World'); // 'Hello\n\nWorld' * ``` */ export declare function normalizeParagraphSeparator(input: string): string; //# sourceMappingURL=paragraph-separator.d.ts.map