![]() | Name | Last modified | Size | Description |
---|---|---|---|---|
![]() | Parent Directory | - | ||
![]() | LICENSE | a year ago | 1.1K | |
![]() | README.md | a year ago | 713 | 595aea1 more query options + view options [كارل مبارك] |
![]() | index.d.ts | a year ago | 297 | |
![]() | index.js | a year ago | 1.9K | |
![]() | package.json | a year ago | 937 | afd0ccc remove unused [كارل مبارك] |
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
const charRegex = require("char-regex");
"❤️👊🏽".match(/./);
//=> ["", "", "", "", "", "", ""]
"❤️👊🏽".match(charRegex());
//=> ["❤️", "👊🏽"]