challenge-algorithms-v2.0-D.../node_modules/char-regex
2022-10-27 16:56:30 -03:00
..
index.d.ts Desaio 01 concluido 2022-10-27 16:56:30 -03:00
index.js Desaio 01 concluido 2022-10-27 16:56:30 -03:00
LICENSE Desaio 01 concluido 2022-10-27 16:56:30 -03:00
package.json Desaio 01 concluido 2022-10-27 16:56:30 -03:00
README.md Desaio 01 concluido 2022-10-27 16:56:30 -03:00

Char Regex Travis CI Build Status

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 Badge

Install

npm install char-regex

Usage

const charRegex = require("char-regex");

"❤️👊🏽".match(/./);
//=> ["", "", "", "", "", "", ""]

"❤️👊🏽".match(charRegex());
//=> ["❤️", "👊🏽"]

API

charRegex()