main
Last change
on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 5 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
717 bytes
|
Line | |
---|
1 | "use strict";
|
---|
2 |
|
---|
3 | Object.defineProperty(exports, "__esModule", {
|
---|
4 | value: true
|
---|
5 | });
|
---|
6 | exports.default = void 0;
|
---|
7 | var _helperPluginUtils = require("@babel/helper-plugin-utils");
|
---|
8 | var _core = require("@babel/core");
|
---|
9 | var _default = exports.default = (0, _helperPluginUtils.declare)(api => {
|
---|
10 | api.assertVersion(7);
|
---|
11 | return {
|
---|
12 | name: "transform-sticky-regex",
|
---|
13 | visitor: {
|
---|
14 | RegExpLiteral(path) {
|
---|
15 | const {
|
---|
16 | node
|
---|
17 | } = path;
|
---|
18 | if (!node.flags.includes("y")) return;
|
---|
19 | path.replaceWith(_core.types.newExpression(_core.types.identifier("RegExp"), [_core.types.stringLiteral(node.pattern), _core.types.stringLiteral(node.flags)]));
|
---|
20 | }
|
---|
21 | }
|
---|
22 | };
|
---|
23 | });
|
---|
24 |
|
---|
25 | //# sourceMappingURL=index.js.map
|
---|
Note:
See
TracBrowser
for help on using the repository browser.