UNPKG

vuoto

Version:

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

14 lines 372 B
/** * Replaces line separator (U+2028) with a newline. * @param input The string to normalize. * * @returns The normalized string. * * @example * * ```ts * const normalized = normalizeLineSeparator('Hello\u2028World'); // 'Hello\nWorld' * ``` */ export declare function normalizeLineSeparator(input: string): string; //# sourceMappingURL=line-separator.d.ts.map