This commit is contained in:
hatuhn
2019-09-13 09:45:04 +07:00
parent f14a34ba19
commit 558fb07261
16790 changed files with 0 additions and 1642370 deletions

View File

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

View File

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

View File

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

View File

@@ -1,10 +0,0 @@
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;

View File

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

View File

@@ -1,5 +0,0 @@
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);
};

View File

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

View File

@@ -1,5 +0,0 @@
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);
};

View File

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