9 lines
483 B
JavaScript
9 lines
483 B
JavaScript
shadow$provide.module$node_modules$pixi_DOT_js$lib$utils$logging$warn = function(global, require, module, exports) {
|
|
let warnCount = 0;
|
|
exports.warn = function(...args) {
|
|
500 !== warnCount && (warnCount++, 500 === warnCount ? console.warn("PixiJS Warning: too many warnings, no more warnings will be reported to the console by PixiJS.") : console.warn("PixiJS Warning: ", ...args));
|
|
};
|
|
};
|
|
|
|
//# sourceMappingURL=module$node_modules$pixi_DOT_js$lib$utils$logging$warn.js.map
|