aboutsummaryrefslogtreecommitdiff
path: root/node_modules/@babel/plugin-transform-dotall-regex/README.md
blob: d180193c86bb9d540d3beac426ae8832a81d14cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# @babel/plugin-transform-dotall-regex

> Compile regular expressions using [the `s` (`dotAll`) flag](https://github.com/tc39/proposal-regexp-dotall-flag) to ES5 that works in today’s environments.

## Example

**In**

```js
/./s
```

**Out**

```js
/[\0-\uFFFF]/
```

**In**

```js
/./su
```

**Out**

```js
/[\0-\u{10FFFF}]/u
```

[Here’s an online demo.](https://mothereff.in/regexpu#input=const+regex+%3D+/foo.bar/s%3B%0Aconsole.log%28%0A++regex.test%28%27foo%5Cnbar%27%29%0A%29%3B%0A//+%E2%86%92+true&dotAllFlag=1)

## Installation

```sh
npm install --save-dev @babel/plugin-transform-dotall-regex
```

## Usage

### Via `.babelrc` (recommended)

`.babelrc`

```json
{
  "plugins": ["@babel/plugin-transform-dotall-regex"]
}
```

### Via CLI

```sh
$ babel --plugins @babel/plugin-transform-dotall-regex script.js
```

### Via Node.js API

```js
require('@babel/core').transform(code, {
  'plugins': ['@babel/plugin-transform-dotall-regex']
});
```

## Author

| [![twitter/mathias](https://gravatar.com/avatar/24e08a9ea84deb17ae121074d0f17125?s=70)](https://twitter.com/mathias "Follow @mathias on Twitter") |
|---|
| [Mathias Bynens](https://mathiasbynens.be/) |