Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Lodash _.deburr() Method

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Lodash is a JavaScript library that works on the top of underscore.js. Lodash helps in working with arrays, strings, objects, numbers, etc. 

The _.deburr() method is used to convert Latin-1 Supplement and Latin Extended-A letters to basic Latin letters and removing combining diacritical marks.

Syntax:

_.deburr([string=''])

Parameters: This method accepts single parameter as mentioned above and described below:

  • string: This parameter holds the Latin-1 Supplement and Latin Extended-A letters string.

Return Value: This method returns the basic Latin letters string.

Example 1:

Javascript




const _ = require('lodash'); 
  
var str1 = _.deburr("ÀÄÅÆÇÈÉ");
console.log(str1);
  
var str2 = _.deburr("ãäåæçè");
console.log(str2);

Output:

"AAAAeCEE"
"aaaaece"

Example 2:

Javascript




const _ = require('lodash'); 
  
var str1 = _.deburr("ĜĚĔĶŜ");
console.log(str1);
  
var str2 = _.deburr("ĝęėķś");
console.log(str2);

Output:

"GEEKS"
"geeks"
My Personal Notes arrow_drop_up
Last Updated : 07 Sep, 2020
Like Article
Save Article
Similar Reads
Related Tutorials