Deburrs string by converting Latin-1 Supplement and Latin Extended-A letters to basic Latin letters and removing combining diacritical marks.
string
5.7.0
deburr('déjà vu')// => 'deja vu' Copy
deburr('déjà vu')// => 'deja vu'
The string to deburr.
Returns the deburred string.
Deburrs
string
by converting Latin-1 Supplement and Latin Extended-A letters to basic Latin letters and removing combining diacritical marks.Since
5.7.0
Example