MCPcopy
hub / github.com/lodash/lodash / deburr

Function deburr

lodash.js:14289–14292  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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.

Callers 1

createCompounderFunction · 0.85

Calls 1

toStringFunction · 0.85

Tested by

no test coverage detected