* feat: implement create-regexp-features-plugin * fix: test input is not effective * refactor: leverage create-regexp-features-plugin * test: add more test cases * test: update test fixture * chore: add type annotation to features * test: add regression test for issue 9892 * add regression test for issue 9199 * address review comments from Nicolò * address review comments from Brian * small tweaks * Enable dotAllFlag when flags includes u
19 lines
594 B
JavaScript
19 lines
594 B
JavaScript
/* eslint-disable @babel/development/plugin-name */
|
|
import { createRegExpFeaturePlugin } from "@babel/helper-create-regexp-features-plugin";
|
|
import { declare } from "@babel/helper-plugin-utils";
|
|
|
|
export default declare((api, options) => {
|
|
api.assertVersion(7);
|
|
|
|
const { useUnicodeFlag = true } = options;
|
|
if (typeof useUnicodeFlag !== "boolean") {
|
|
throw new Error(".useUnicodeFlag must be a boolean, or undefined");
|
|
}
|
|
|
|
return createRegExpFeaturePlugin({
|
|
name: "proposal-unicode-property-regex",
|
|
feature: "unicodePropertyEscape",
|
|
options: { useUnicodeFlag },
|
|
});
|
|
});
|