@babel/plugin-transform-dotall-regex
NOTE: This plugin is included in
@babel/preset-env
, in ES2018
Example
In
/./s;
Out
/[\0-\uFFFF]/;
In
/./su;
Out
/[\0-\u{10FFFF}]/u;
Installation
npm install --save-dev @babel/plugin-transform-dotall-regex
Usage
With a configuration file (Recommended)
.babelrc
{
"plugins": ["@babel/plugin-transform-dotall-regex"]
}
Via CLI
$ babel --plugins @babel/plugin-transform-dotall-regex script.js
Via Node.js API
require("@babel/core").transformSync(code, {
plugins: ["@babel/plugin-transform-dotall-regex"],
});
Author
Mathias Bynens |