Added logging, changed some directory structure

This commit is contained in:
2018-01-13 21:33:40 -05:00
parent f079a5f067
commit 8e72ffb917
73656 changed files with 35284 additions and 53718 deletions

View File

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

View File

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

View File

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

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;

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

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

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

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

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