peach a19a732be8 commit message | преди 2 години | |
---|---|---|
.. | ||
LICENSE | преди 2 години | |
README.md | преди 2 години | |
index.d.ts | преди 2 години | |
index.js | преди 2 години | |
package.json | преди 2 години |
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());
//=> ["❤️", "👊🏽"]