1
0
mirror of https://github.com/musix-org/musix-oss synced 2026-05-12 21:54:53 +00:00
This commit is contained in:
MatteZ02
2020-03-03 22:30:50 +02:00
parent edfcc6f474
commit 30022c7634
11800 changed files with 1984416 additions and 1 deletions
+3
View File
@@ -0,0 +1,3 @@
require('../../modules/es.regexp.constructor');
module.exports = RegExp;
+6
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
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
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
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
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
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
View File
@@ -0,0 +1,5 @@
require('../../modules/es.regexp.sticky');
module.exports = function (it) {
return it.sticky;
};
+6
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
View File
@@ -0,0 +1,5 @@
require('../../modules/es.regexp.to-string');
module.exports = function toString(it) {
return RegExp.prototype.toString.call(it);
};