This commit is contained in:
2022-09-30 05:39:11 +00:00
parent 41ee9463ae
commit 4687fa49bc
11418 changed files with 1312504 additions and 0 deletions

View File

@ -0,0 +1,3 @@
require('../../modules/es.regexp.constructor');
module.exports = RegExp;

6
buildfiles/node_modules/core-js/es/regexp/flags.js generated vendored Normal file
View File

@ -0,0 +1,6 @@
require('../../modules/es.regexp.flags');
var flags = require('../../internals/regexp-flags');
module.exports = function (it) {
return flags.call(it);
};

10
buildfiles/node_modules/core-js/es/regexp/index.js generated vendored Normal file
View File

@ -0,0 +1,10 @@
require('../../modules/es.regexp.constructor');
require('../../modules/es.regexp.to-string');
require('../../modules/es.regexp.exec');
require('../../modules/es.regexp.flags');
require('../../modules/es.regexp.sticky');
require('../../modules/es.regexp.test');
require('../../modules/es.string.match');
require('../../modules/es.string.replace');
require('../../modules/es.string.search');
require('../../modules/es.string.split');

8
buildfiles/node_modules/core-js/es/regexp/match.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
require('../../modules/es.string.match');
var wellKnownSymbol = require('../../internals/well-known-symbol');
var MATCH = wellKnownSymbol('match');
module.exports = function (it, str) {
return RegExp.prototype[MATCH].call(it, str);
};

8
buildfiles/node_modules/core-js/es/regexp/replace.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
require('../../modules/es.string.replace');
var wellKnownSymbol = require('../../internals/well-known-symbol');
var REPLACE = wellKnownSymbol('replace');
module.exports = function (it, str, replacer) {
return RegExp.prototype[REPLACE].call(it, str, replacer);
};

8
buildfiles/node_modules/core-js/es/regexp/search.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
require('../../modules/es.string.search');
var wellKnownSymbol = require('../../internals/well-known-symbol');
var SEARCH = wellKnownSymbol('search');
module.exports = function (it, str) {
return RegExp.prototype[SEARCH].call(it, str);
};

8
buildfiles/node_modules/core-js/es/regexp/split.js generated vendored Normal file
View File

@ -0,0 +1,8 @@
require('../../modules/es.string.split');
var wellKnownSymbol = require('../../internals/well-known-symbol');
var SPLIT = wellKnownSymbol('split');
module.exports = function (it, str, limit) {
return RegExp.prototype[SPLIT].call(it, str, limit);
};

5
buildfiles/node_modules/core-js/es/regexp/sticky.js generated vendored Normal file
View File

@ -0,0 +1,5 @@
require('../../modules/es.regexp.sticky');
module.exports = function (it) {
return it.sticky;
};

6
buildfiles/node_modules/core-js/es/regexp/test.js generated vendored Normal file
View File

@ -0,0 +1,6 @@
require('../../modules/es.regexp.exec');
require('../../modules/es.regexp.test');
module.exports = function (re, string) {
return RegExp.prototype.test.call(re, string);
};

View File

@ -0,0 +1,5 @@
require('../../modules/es.regexp.to-string');
module.exports = function toString(it) {
return RegExp.prototype.toString.call(it);
};