@babel/plugin-transform-unicode-property-regex
信息
此插件包含在 @babel/preset-env
中,位于 ES2018
安装
- npm
- Yarn
- pnpm
npm install --save-dev @babel/plugin-transform-unicode-property-regex
yarn add --dev @babel/plugin-transform-unicode-property-regex
pnpm add --save-dev @babel/plugin-transform-unicode-property-regex
用法
使用配置文件(推荐)
babel.config.json
{
"plugins": ["@babel/plugin-transform-unicode-property-regex"]
}
通过 CLI
Shell
babel --plugins @babel/@babel/plugin-transform-unicode-property-regex script.js
通过 Node.js API
JavaScript
require("@babel/core").transformSync(code, {
plugins: ["@babel/plugin-transform-unicode-property-regex"],
});
转换为 ES6/ES2015
JavaScript
require("@babel/core").transformSync(code, {
plugins: [
[
"@babel/plugin-transform-unicode-property-regex",
{ useUnicodeFlag: false },
],
],
});
选项
useUnicodeFlag
(默认为true
)
当使用 false
禁用时,转换会将 Unicode 正则表达式转换为非 Unicode 正则表达式以获得更广泛的支持,并删除 u
标志。有关更多信息,请参阅 https://github.com/mathiasbynens/regexpu-core#useunicodeflag-default-false。
提示
您可以在 此处 阅读有关配置插件选项的更多信息
作者
Mathias Bynens |