Initial commit: GamePortrait 竖屏版 - 深色豪华主题

This commit is contained in:
li
2026-01-16 17:47:53 +08:00
commit 40976e4b45
26611 changed files with 2843638 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
require('../../modules/es.regexp.constructor');
require('../../modules/es.regexp.dot-all');
require('../../modules/es.regexp.exec');
require('../../modules/es.regexp.sticky');
module.exports = RegExp;
+7
View File
@@ -0,0 +1,7 @@
require('../../modules/es.regexp.constructor');
require('../../modules/es.regexp.dot-all');
require('../../modules/es.regexp.exec');
module.exports = function (it) {
return it.dotAll;
};
+4
View File
@@ -0,0 +1,4 @@
require('../../modules/es.regexp.flags');
var getRegExpFlags = require('../../internals/regexp-get-flags');
module.exports = getRegExpFlags;
+11
View File
@@ -0,0 +1,11 @@
require('../../modules/es.regexp.constructor');
require('../../modules/es.regexp.to-string');
require('../../modules/es.regexp.dot-all');
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');
+10
View File
@@ -0,0 +1,10 @@
require('../../modules/es.regexp.exec');
require('../../modules/es.string.match');
var call = require('../../internals/function-call');
var wellKnownSymbol = require('../../internals/well-known-symbol');
var MATCH = wellKnownSymbol('match');
module.exports = function (it, str) {
return call(RegExp.prototype[MATCH], it, str);
};
+10
View File
@@ -0,0 +1,10 @@
require('../../modules/es.regexp.exec');
require('../../modules/es.string.replace');
var call = require('../../internals/function-call');
var wellKnownSymbol = require('../../internals/well-known-symbol');
var REPLACE = wellKnownSymbol('replace');
module.exports = function (it, str, replacer) {
return call(RegExp.prototype[REPLACE], it, str, replacer);
};
+10
View File
@@ -0,0 +1,10 @@
require('../../modules/es.regexp.exec');
require('../../modules/es.string.search');
var call = require('../../internals/function-call');
var wellKnownSymbol = require('../../internals/well-known-symbol');
var SEARCH = wellKnownSymbol('search');
module.exports = function (it, str) {
return call(RegExp.prototype[SEARCH], it, str);
};
+10
View File
@@ -0,0 +1,10 @@
require('../../modules/es.regexp.exec');
require('../../modules/es.string.split');
var call = require('../../internals/function-call');
var wellKnownSymbol = require('../../internals/well-known-symbol');
var SPLIT = wellKnownSymbol('split');
module.exports = function (it, str, limit) {
return call(RegExp.prototype[SPLIT], it, str, limit);
};
+7
View File
@@ -0,0 +1,7 @@
require('../../modules/es.regexp.constructor');
require('../../modules/es.regexp.exec');
require('../../modules/es.regexp.sticky');
module.exports = function (it) {
return it.sticky;
};
+5
View File
@@ -0,0 +1,5 @@
require('../../modules/es.regexp.exec');
require('../../modules/es.regexp.test');
var uncurryThis = require('../../internals/function-uncurry-this');
module.exports = uncurryThis(/./.test);
+4
View File
@@ -0,0 +1,4 @@
require('../../modules/es.regexp.to-string');
var uncurryThis = require('../../internals/function-uncurry-this');
module.exports = uncurryThis(/./.toString);