vuoto
Version:
Modern whitespace normalizer CLI with enhanced output and developer experience - cut the noise, clean the void
14 lines • 369 B
TypeScript
/**
* Removes invisible separators.
* @param input The string to normalize.
*
* @returns The normalized string.
*
* @example
*
* ```ts
* const normalized = normalizeInvisibleSeparators('Hello\u2063World'); // 'HelloWorld'
* ```
*/
export declare function normalizeInvisibleSeparators(input: string): string;
//# sourceMappingURL=invisible-separators.d.ts.map