peach a19a732be8 commit message | před 2 roky | |
---|---|---|
.. | ||
LICENSE | před 2 roky | |
README.md | před 2 roky | |
index.d.ts | před 2 roky | |
index.js | před 2 roky | |
package.json | před 2 roky |
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());
//=> ["❤️", "👊🏽"]