This commit is contained in:
Akko
2025-08-04 18:57:35 +02:00
parent 8cf6e78a79
commit 9495868c2e
5030 changed files with 518594 additions and 17609 deletions

1
node_modules/pixi.js/lib/utils/logging/warn.mjs.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"warn.mjs","sources":["../../../src/utils/logging/warn.ts"],"sourcesContent":["let warnCount = 0;\nconst maxWarnings = 500;\n\n/**\n * Logs a PixiJS warning message to the console. Stops logging after 500 warnings have been logged.\n * @param args - The warning message(s) to log\n * @returns {void}\n * @memberof utils\n * @ignore\n */\nexport function warn(...args: any[])\n{\n if (warnCount === maxWarnings) return;\n\n warnCount++;\n\n if (warnCount === maxWarnings)\n {\n console.warn('PixiJS Warning: too many warnings, no more warnings will be reported to the console by PixiJS.');\n }\n else\n {\n console.warn('PixiJS Warning: ', ...args);\n }\n}\n"],"names":[],"mappings":";AAAA,IAAI,SAAY,GAAA,CAAA,CAAA;AAChB,MAAM,WAAc,GAAA,GAAA,CAAA;AASb,SAAS,QAAQ,IACxB,EAAA;AACI,EAAA,IAAI,SAAc,KAAA,WAAA;AAAa,IAAA,OAAA;AAE/B,EAAA,SAAA,EAAA,CAAA;AAEA,EAAA,IAAI,cAAc,WAClB,EAAA;AACI,IAAA,OAAA,CAAQ,KAAK,gGAAgG,CAAA,CAAA;AAAA,GAGjH,MAAA;AACI,IAAQ,OAAA,CAAA,IAAA,CAAK,kBAAoB,EAAA,GAAG,IAAI,CAAA,CAAA;AAAA,GAC5C;AACJ;;;;"}