@babel/plugin-proposal-unicode-property-regex
Installation
npm install --save-dev @babel/plugin-proposal-unicode-property-regex
Usage
With a configuration file (Recommended)
{
"plugins": ["@babel/plugin-proposal-unicode-property-regex"]
}
Via CLI
babel --plugins @babel/@babel/plugin-proposal-unicode-property-regex script.js
Via Node.js API
require("@babel/core").transform(code, {
"plugins": ["@babel/plugin-proposal-unicode-property-regex"]
});
To transpile to ES6/ES2015:
require("@babel/core").transform(code, {
"plugins": [
["@babel/plugin-proposal-unicode-property-regex", { "useUnicodeFlag": false }]
]
});
Options
useUnicodeFlag
(defaults totrue
)
When disabled with false
, the transform converts Unicode regexes tonon-Unicode regexes for wider support, removing the u
flag. See https://github.com/mathiasbynens/regexpu-core#useunicodeflag-default-false for more information.
You can read more about configuring plugin options here
Author
Mathias Bynens |