Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
lodash.deburr
Advanced tools
The lodash.deburr package is a utility that removes diacritical marks (accents) from letters in a string, converting them to their basic Latin alphabet equivalents. This is particularly useful for normalizing text for comparison, search, or display purposes.
Remove diacritical marks
This feature removes diacritical marks from the input string. In the example, 'déjà vu' is converted to 'deja vu'.
const deburr = require('lodash.deburr');
const result = deburr('déjà vu');
console.log(result); // Output: 'deja vu'
The 'unorm' package provides Unicode normalization forms, which can be used to decompose characters with diacritical marks into their base characters and combining marks. While it offers more comprehensive Unicode normalization, it requires additional steps to achieve the same result as lodash.deburr.
The 'diacritics' package is specifically designed to remove diacritical marks from strings. It offers similar functionality to lodash.deburr but focuses solely on this task, making it a lightweight alternative.
The 'normalize-diacritics' package provides a straightforward way to remove diacritical marks from strings. It is similar to lodash.deburr in terms of functionality but is a smaller, more focused library.
The lodash method _.deburr
exported as a Node.js module.
Using npm:
$ {sudo -H} npm i -g npm
$ npm i --save lodash.deburr
In Node.js:
var deburr = require('lodash.deburr');
See the documentation or package source for more details.
FAQs
The lodash method `_.deburr` exported as a module.
The npm package lodash.deburr receives a total of 823,774 weekly downloads. As such, lodash.deburr popularity was classified as popular.
We found that lodash.deburr demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.