char-regex
Advanced tools
A regex to match any full character, considering weird character ranges.
Weekly downloads
Changelog
https://github.com/Richienb/char-regex/compare/v2.0.0...v2.0.1
Readme
A regex to match any full character, considering weird character ranges. Tested on every single emoji and unicode character. Based on the Lodash implementation.
npm install char-regex
import charRegex from 'char-regex';
'❤️👊🏽'.match(/./);
//=> ['', '', '', '', '', '', '']
'❤️👊🏽'.match(charRegex());
//=> ['❤️', '👊🏽']
A regex to match any full character, considering weird character ranges.
The npm package char-regex receives a total of 13,538,946 weekly downloads. As such, char-regex popularity was classified as popular.
We found that char-regex demonstrated a healthy version release cadence and project activity. It has 1 open source maintainer collaborating on the project.