This commit is contained in:
tatianamac
2019-11-26 14:50:43 -08:00
parent 8a55660ed0
commit 6d5445ecc5
13894 changed files with 2233957 additions and 0 deletions

2
node_modules/core-js/fn/regexp/constructor.js generated vendored Normal file
View File

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

2
node_modules/core-js/fn/regexp/escape.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/core.regexp.escape');
module.exports = require('../../modules/_core').RegExp.escape;

5
node_modules/core-js/fn/regexp/flags.js generated vendored Normal file
View File

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

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

@ -0,0 +1,10 @@
require('../../modules/es6.regexp.constructor');
require('../../modules/es6.regexp.exec');
require('../../modules/es6.regexp.to-string');
require('../../modules/es6.regexp.flags');
require('../../modules/es6.regexp.match');
require('../../modules/es6.regexp.replace');
require('../../modules/es6.regexp.search');
require('../../modules/es6.regexp.split');
require('../../modules/core.regexp.escape');
module.exports = require('../../modules/_core').RegExp;

5
node_modules/core-js/fn/regexp/match.js generated vendored Normal file
View File

@ -0,0 +1,5 @@
require('../../modules/es6.regexp.match');
var MATCH = require('../../modules/_wks')('match');
module.exports = function (it, str) {
return RegExp.prototype[MATCH].call(it, str);
};

5
node_modules/core-js/fn/regexp/replace.js generated vendored Normal file
View File

@ -0,0 +1,5 @@
require('../../modules/es6.regexp.replace');
var REPLACE = require('../../modules/_wks')('replace');
module.exports = function (it, str, replacer) {
return RegExp.prototype[REPLACE].call(it, str, replacer);
};

5
node_modules/core-js/fn/regexp/search.js generated vendored Normal file
View File

@ -0,0 +1,5 @@
require('../../modules/es6.regexp.search');
var SEARCH = require('../../modules/_wks')('search');
module.exports = function (it, str) {
return RegExp.prototype[SEARCH].call(it, str);
};

5
node_modules/core-js/fn/regexp/split.js generated vendored Normal file
View File

@ -0,0 +1,5 @@
require('../../modules/es6.regexp.split');
var SPLIT = require('../../modules/_wks')('split');
module.exports = function (it, str, limit) {
return RegExp.prototype[SPLIT].call(it, str, limit);
};

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

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