This commit is contained in:
Yamozha
2021-04-02 02:24:13 +03:00
parent c23950b545
commit 7256d79e2c
31493 changed files with 3036630 additions and 0 deletions

3
node_modules/core-js/es/regexp/constructor.js generated vendored Normal file
View File

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

6
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
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
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
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
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
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
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
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);
};

5
node_modules/core-js/es/regexp/to-string.js generated vendored Normal file
View File

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