🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## deburr + [link](./deburr "Link to this entry.") + [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L12093 "View in source.") + [npm](https://www.npmjs.com/package/lodash.deburr "See the npm package.") ``` _.deburr([string='']) ``` 转换 [latin-1 supplementary letters](https://en.wikipedia.org/wiki/Latin-1_Supplement_(Unicode_block)#Character_table) 为基本拉丁字母,并删除[变音符](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks)。 ### 参数 1. [string=''] (string) 要处理的字符串 ### 返回值 (string) 返回处理后的字符串 ### 示例 ``` _.deburr('déjà vu'); // => 'deja vu' ```