initial commit

This commit is contained in:
2026-07-01 22:38:29 -06:00
commit 9302ad8dce
1662 changed files with 140758 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
shadow$provide.module$node_modules$pixi_DOT_js$lib$utils$data$uid = function(global, require, module, exports) {
const uidCache = {default:-1};
exports.resetUids = function() {
for (const key in uidCache) {
delete uidCache[key];
}
};
exports.uid = function(name = "default") {
void 0 === uidCache[name] && (uidCache[name] = -1);
return ++uidCache[name];
};
};
//# sourceMappingURL=module$node_modules$pixi_DOT_js$lib$utils$data$uid.js.map