Irina Glushko 2389e7160b HW1 done | преди 3 години | |
---|---|---|
.. | ||
LICENSE | преди 3 години | |
README.md | преди 3 години | |
index.d.ts | преди 3 години | |
index.js | преди 3 години | |
package.json | преди 3 години |
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());
//=> ["❤️", "👊🏽"]