source: imaps-frontend/node_modules/@babel/plugin-syntax-unicode-sets-regex/lib/index.js

main
Last change on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 4 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 643 bytes
Line 
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = void 0;
7
8var _helperCreateRegexpFeaturesPlugin = require("@babel/helper-create-regexp-features-plugin");
9
10var _helperPluginUtils = require("@babel/helper-plugin-utils");
11
12var _default = (0, _helperPluginUtils.declare)(api => {
13 api.assertVersion(7);
14 return (0, _helperCreateRegexpFeaturesPlugin.createRegExpFeaturePlugin)({
15 name: "syntax-unicode-sets-regex",
16 feature: "unicodeSetsFlag_syntax",
17
18 manipulateOptions(opts, parserOpts) {
19 parserOpts.plugins.push("regexpUnicodeSets");
20 }
21
22 });
23});
24
25exports.default = _default;
Note: See TracBrowser for help on using the repository browser.