* Deburrs `string` by converting * [Latin-1 Supplement](https://en.wikipedia.org/wiki/Latin-1_Supplement_(Unicode_block)#Character_table) * and [Latin Extended-A](https://en.wikipedia.org/wiki/Latin_Extended-A) * letters to basic Latin letters and removing * [combining diacritica
(string)
| 14287 | * // => 'deja vu' |
| 14288 | */ |
| 14289 | function deburr(string) { |
| 14290 | string = toString(string); |
| 14291 | return string && string.replace(reLatin, deburrLetter).replace(reComboMark, ''); |
| 14292 | } |
| 14293 | |
| 14294 | /** |
| 14295 | * Checks if `string` ends with the given target string. |
no test coverage detected