initial commit
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user