_.deburr

_.deburr([string=''])

source npm package

Deburrs string by converting Latin-1 Supplement and Latin Extended-A letters to basic Latin letters and removing combining diacritical marks.

Since

3.0.0

Arguments

  1. [string=''] (string): The string to deburr.

Returns

(string): Returns the deburred string.

Example

_.deburr('déjà vu');
// => 'deja vu'