@babel/plugin-proposal-regexp-modifiers
示例
i
修饰符
input.js
// matches Aa and aa
const regex = /(?i:a)a/
将转换为
output.js
const regex = /(?:[Aa])a/
m
修饰符
input.js
// matches aa, a\naa, etc. but not a\na
const regex = /(?m:^a)a/
将转换为
output.js
const regex = /(?:(?:^|(?<=[\n\r\u2028\u2029]))a)a/
s
修饰符
input.js
// matches \na and aa, but not \n\n
const regex = /(?s:.)./
将转换为
output.js
const regex = /(?:[\s\S])./;
多个修饰符
您还可以应用多个修饰符
// matches Aa, aa, A\naa, etc. but not A\na
const regex = /(?im:^a)a/
此提案仅支持 i
、m
和 s
作为内联修饰符。
安装
- npm
- Yarn
- pnpm
npm install --save-dev @babel/plugin-proposal-regexp-modifiers
yarn add --dev @babel/plugin-proposal-regexp-modifiers
pnpm add --save-dev @babel/plugin-proposal-regexp-modifiers
用法
使用配置文件(推荐)
babel.config.json
{
"plugins": ["@babel/plugin-proposal-regexp-modifiers"]
}
通过 CLI
Shell
babel --plugins @babel/@babel/plugin-proposal-regexp-modifiers script.js
通过 Node.js API
JavaScript
require("@babel/core").transformSync(code, {
plugins: ["@babel/plugin-proposal-regexp-modifiers"],
});