Refactor move docs (#8108)

* feat: [skip] generate readme script

* docs: [skip ci] update READMEs

* docs: [skip ci] fix code block type

* chore: [skip ci] move generator script
This commit is contained in:
Sven SAULEAU
2018-06-04 16:32:39 +02:00
committed by Henry Zhu
parent b6eaaa2496
commit b445b79734
143 changed files with 1286 additions and 11238 deletions

View File

@@ -1,51 +1,19 @@
# @babel/plugin-transform-unicode-regex
> Compile ES2015 unicode regex to ES5
> Compile ES2015 Unicode regex to ES5
## Example
See our website [@babel/plugin-transform-unicode-regex](https://new.babeljs.io/docs/en/next/babel-plugin-transform-unicode-regex.html) for more information.
**In**
## Install
```js
var string = "foo💩bar";
var match = string.match(/foo(.)bar/u);
```
**Out**
```js
var string = "foo💩bar";
var match = string.match(/foo((?:[\0-\t\x0B\f\x0E-\u2027\u202A-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]))bar/);
```
## Installation
Using npm:
```sh
npm install --save-dev @babel/plugin-transform-unicode-regex
npm install --save @babel/plugin-transform-unicode-regex
```
## Usage
### Via `.babelrc` (Recommended)
**.babelrc**
```json
{
"plugins": ["@babel/plugin-transform-unicode-regex"]
}
```
### Via CLI
or using yarn:
```sh
babel --plugins @babel/plugin-transform-unicode-regex script.js
```
### Via Node API
```javascript
require("@babel/core").transform("code", {
plugins: ["@babel/plugin-transform-unicode-regex"]
});
yarn add --save @babel/plugin-transform-unicode-regex
```