This commit is contained in:
chrosey
2017-09-13 07:52:34 +02:00
parent a1f16c37f4
commit 2340b0226b
24621 changed files with 2912161 additions and 149 deletions
+2
View File
@@ -0,0 +1,2 @@
require('../../modules/es6.regexp.constructor');
module.exports = RegExp;
+2
View File
@@ -0,0 +1,2 @@
require('../../modules/core.regexp.escape');
module.exports = require('../../modules/_core').RegExp.escape;
+5
View File
@@ -0,0 +1,5 @@
require('../../modules/es6.regexp.flags');
var flags = require('../../modules/_flags');
module.exports = function(it){
return flags.call(it);
};
+9
View File
@@ -0,0 +1,9 @@
require('../../modules/es6.regexp.constructor');
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
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
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
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
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
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);
};