mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-26 22:59:27 +08:00
Add node modules and compiled JavaScript from main (#172)
Co-authored-by: Oliver King <oking3@uncc.edu>
This commit is contained in:
committed by
GitHub
parent
ee3c5aed75
commit
08d466b6ab
+27
@@ -0,0 +1,27 @@
|
||||
# Char Regex [](https://travis-ci.com/Richienb/char-regex)
|
||||
|
||||
A regex to match any full character, considering weird character ranges. Tested on every single emoji and unicode character. Based on the Lodash implementation.
|
||||
|
||||
[](https://npmjs.com/package/char-regex)
|
||||
|
||||
## Install
|
||||
|
||||
```sh
|
||||
npm install char-regex
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
const charRegex = require("char-regex");
|
||||
|
||||
"❤️👊🏽".match(/./);
|
||||
//=> ["", "", "", "", "", "", ""]
|
||||
|
||||
"❤️👊🏽".match(charRegex());
|
||||
//=> ["❤️", "👊🏽"]
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
### charRegex()
|
||||
Reference in New Issue
Block a user