Skip to content

Function.deburr

github-actions[bot] edited this page Jun 11, 2026 · 22 revisions

umt / deburr

Function: deburr()

deburr(string_): string

Defined in: String/deburr.ts:10

Removes diacritical marks from a string by decomposing characters and stripping the combining marks (e.g. "é" becomes "e").

Parameters

string_

string

Input string

Returns

string

String without diacritical marks

Example

deburr("déjà vu"); // "deja vu"
deburr("Crème brûlée"); // "Creme brulee"

API

Classes

Interfaces

Type Aliases

Variables

Functions

Clone this wiki locally