# deburr

# replaces accented characters

Deburrs string by converting Latin-1 Supplement and Latin Extended-A letters to basic Latin letters and removing combining diacritical marks. -- https://lodash.com/docs/4.17.15#deburr (opens new window)

string deburr(string v)
deburr("déjà vu")
/*
"deja vu"
*/
Last Updated: 7/16/2020, 11:00:33 PM