@promptbook/remote-client
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
12 lines (11 loc) • 367 B
TypeScript
/**
* Removes diacritic marks (accents) from characters in a string.
*
* Note: [🔂] This function is idempotent.
*
* @param input The string containing diacritics to be normalized.
* @returns The string with diacritics removed or normalized.
*
* @public exported from `@promptbook/utils`
*/
export declare function removeDiacritics(input: string): string;