Skip to main content

@babel/plugin-transform-dotall-regex

信息

此插件包含在 @babel/preset-env 中,在 ES2018

¥This plugin is included in @babel/preset-env, in ES2018

此插件转换正则表达式字面量以支持 /s 标志。它不会修补 new RegExp 构造函数,因为它的参数不能静态地预先转换:要处理函数/类的运行时行为,你需要改用 polyfill。

¥This plugin transforms regular expression literals to support the /s flag. It does not patch the new RegExp constructor, since its arguments cannot be pre-transformed statically: to handle runtime behavior of functions/classes, you will need to use a polyfill instead.

示例

¥Example

输入

¥In

JavaScript
/./s;

输出

¥Out

JavaScript
/[\0-\uFFFF]/;

输入

¥In

JavaScript
/./su;

输出

¥Out

JavaScript
/[\0-\u{10FFFF}]/u;

这是一个在线演示。

¥Here’s an online demo.

安装

¥Installation

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

用法

¥Usage

¥With a configuration file (Recommended)

.babelrc

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

通过 CLI

¥Via CLI

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

通过 Node.js API

¥Via Node.js API

JavaScript
require("@babel/core").transformSync(code, {
plugins: ["@babel/plugin-transform-dotall-regex"],
});

作者

¥Author

twitter/mathias
Mathias Bynens