1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-06-17 10:46:01 +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
node_modules/core-js/es/regexp/constructor.js generated vendored Normal file
View File

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

6
node_modules/core-js/es/regexp/flags.js generated vendored Normal file
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
node_modules/core-js/es/regexp/index.js generated vendored Normal file
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
node_modules/core-js/es/regexp/match.js generated vendored Normal file
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
node_modules/core-js/es/regexp/replace.js generated vendored Normal file
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
node_modules/core-js/es/regexp/search.js generated vendored Normal file
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
node_modules/core-js/es/regexp/split.js generated vendored Normal file
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
node_modules/core-js/es/regexp/sticky.js generated vendored Normal file
View File

@ -0,0 +1,5 @@
require('../../modules/es.regexp.sticky');
module.exports = function (it) {
return it.sticky;
};

6
node_modules/core-js/es/regexp/test.js generated vendored Normal file
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
node_modules/core-js/es/regexp/to-string.js generated vendored Normal file
View File

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