项目文件夹

文件
frostbyte_neo 9ccbe096fe feat: add a deployable 2048 static game for WeHub Cloud
Vendors gabrielecirulli/2048 (MIT) under frontend/dist so Cloud can scan it as a static_site.

Co-Authored-By: Cursor Grok 4.6 <cursoragent@cursor.com>
2026-09-11 16:57:55 +08:00

10 行
220 B
JavaScript

Function.prototype.bind = Function.prototype.bind || function (target) {
var self = this;
return function (args) {
if (!(args instanceof Array)) {
args = [args];
}
self.apply(target, args);
};
};