UNPKG

stringzy

Version:

A versatile string manipulation library providing a range of text utilities for JavaScript and Node.js applications.

8 lines (7 loc) 251 B
/** * Removes accents and diacritics from letters in a string. * @param str - Input string * @returns A deburred string without accented characters. * @throws Error if input is not a string */ export declare function deburr(str: string): string;