vuoto
Version:
Modern whitespace normalizer CLI with enhanced output and developer experience - cut the noise, clean the void
14 lines • 348 B
TypeScript
/**
* Replaces form feed (U+000C) with a newline.
* @param input The string to normalize.
*
* @returns The normalized string.
*
* @example
*
* ```ts
* const normalized = normalizeFormFeed('Hello\fWorld'); // 'Hello\nWorld'
* ```
*/
export declare function normalizeFormFeed(input: string): string;
//# sourceMappingURL=form-feed.d.ts.map