@babel/plugin-transform-dotall-regex
此插件转换正则表达式字面量以支持 /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;
安装
¥Installation
- npm
- Yarn
- pnpm
npm install --save-dev @babel/plugin-transform-dotall-regex
yarn add --dev @babel/plugin-transform-dotall-regex
pnpm add --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
Mathias Bynens |