12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- import _typeof from "./typeof.js";
- import _WeakMap from "core-js-pure/features/weak-map/index.js";
- import _reduceInstanceProperty from "core-js-pure/features/instance/reduce.js";
- import _Object$keys from "core-js-pure/features/object/keys.js";
- import _Object$create from "core-js-pure/features/object/create.js";
- import _Symbol$replace from "core-js-pure/features/symbol/replace.js";
- import _Array$isArray from "core-js-pure/features/array/is-array.js";
- import _pushInstanceProperty from "core-js-pure/features/instance/push.js";
- import _sliceInstanceProperty from "core-js-pure/features/instance/slice.js";
- import setPrototypeOf from "./setPrototypeOf.js";
- import inherits from "./inherits.js";
- function _wrapRegExp() {
- _wrapRegExp = function _wrapRegExp(e, r) {
- return new BabelRegExp(e, void 0, r);
- };
- var e = RegExp.prototype,
- r = new _WeakMap();
- function BabelRegExp(e, t, p) {
- var o = RegExp(e, t);
- return r.set(o, p || r.get(e)), setPrototypeOf(o, BabelRegExp.prototype);
- }
- function buildGroups(e, t) {
- var _context;
- var p = r.get(t);
- return _reduceInstanceProperty(_context = _Object$keys(p)).call(_context, function (r, t) {
- var o = p[t];
- if ("number" == typeof o) r[t] = e[o];else {
- for (var i = 0; void 0 === e[o[i]] && i + 1 < o.length;) i++;
- r[t] = e[o[i]];
- }
- return r;
- }, _Object$create(null));
- }
- return inherits(BabelRegExp, RegExp), BabelRegExp.prototype.exec = function (r) {
- var t = e.exec.call(this, r);
- if (t) {
- t.groups = buildGroups(t, this);
- var p = t.indices;
- p && (p.groups = buildGroups(p, this));
- }
- return t;
- }, BabelRegExp.prototype[_Symbol$replace] = function (t, p) {
- if ("string" == typeof p) {
- var o = r.get(this);
- return e[_Symbol$replace].call(this, t, p.replace(/\$<([^>]+)>/g, function (e, r) {
- var t = o[r];
- return "$" + (_Array$isArray(t) ? t.join("$") : t);
- }));
- }
- if ("function" == typeof p) {
- var i = this;
- return e[_Symbol$replace].call(this, t, function () {
- var _context2;
- var e = arguments;
- return "object" != _typeof(e[e.length - 1]) && _pushInstanceProperty(_context2 = e = _sliceInstanceProperty([]).call(e)).call(_context2, buildGroups(e, i)), p.apply(this, e);
- });
- }
- return e[_Symbol$replace].call(this, t, p);
- }, _wrapRegExp.apply(this, arguments);
- }
- export { _wrapRegExp as default };
|