
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
characterset
Advanced tools
CharacterSet is a library for creating and manipulating Unicode character sets in JavaScript. Its main purpose is to help in building regular expressions for validation and matching. It fully supports all Unicode characters and correctly handles surrogate pairs in JavaScript strings and regular expressions.
If you are using Node.js you can install it using npm:
$ npm install characterset
If you want to use CharacterSet in the browser, use the global CharacterSet
constructor or include CharacterSet as an AMD module.
The constructor takes a single input value, which can either be a number, a string or a range. A range is an array of numbers or number pairs.
// Creates a character set with a single code point for [97]
var cs = new CharacterSet(97);
// Creates a character set for the code points [97, 98, 99]
var cs = new CharacterSet('abc');
// Creates a character set for the code points [97, 98, 99]
var cs = new CharacterSet([97, 98, 99]);
// Creates a character set for the code points [97, 98, 99] using a range
var cs = new CharacterSet([[97, 99]]);
// Combines pairs and numbers in ranges for [0, 97, 98, 99]
var cs = new CharacterSet([48, [97, 99]]);
Or you can use the parseUnicodeRange
method to return a CharacterSet instance from a comma-delimited unicode range string.
// Creates a character set for the code points [34, 35]
var cs = CharacterSet.parseUnicodeRange('u+23,u+22');
// Creates a character set for the code points [34, 35, 36, 37]
var cs = CharacterSet.parseUnicodeRange('u+22-25');
Once you have an instance of CharacterSet you can use the following methods on it:
CharacterSet is licensed under the three clause BSD license (see BSD.txt.)
FAQs
A library for working with Unicode character sets
The npm package characterset receives a total of 659 weekly downloads. As such, characterset popularity was classified as not popular.
We found that characterset demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.