forked from enviPath/enviPy
Current Dev State
This commit is contained in:
29
static/js/ketcher2/node_modules/babel-plugin-transform-es2015-sticky-regex/lib/index.js
generated
vendored
Normal file
29
static/js/ketcher2/node_modules/babel-plugin-transform-es2015-sticky-regex/lib/index.js
generated
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
|
||||
exports.default = function () {
|
||||
return {
|
||||
visitor: {
|
||||
RegExpLiteral: function RegExpLiteral(path) {
|
||||
var node = path.node;
|
||||
|
||||
if (!regex.is(node, "y")) return;
|
||||
|
||||
path.replaceWith(t.newExpression(t.identifier("RegExp"), [t.stringLiteral(node.pattern), t.stringLiteral(node.flags)]));
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
var _babelHelperRegex = require("babel-helper-regex");
|
||||
|
||||
var regex = _interopRequireWildcard(_babelHelperRegex);
|
||||
|
||||
var _babelTypes = require("babel-types");
|
||||
|
||||
var t = _interopRequireWildcard(_babelTypes);
|
||||
|
||||
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }
|
||||
|
||||
module.exports = exports["default"];
|
||||
Reference in New Issue
Block a user