@pixi/react
Version:
Write PixiJS applications using React declarative style.
20 lines (16 loc) • 405 B
JavaScript
;
var store = require('../store.js');
;
function log(logType, ...args) {
if (!store.store.debug) {
return;
}
const logMethod = console[logType];
if (!(logMethod instanceof Function)) {
console.warn(`Attempted to create an invalid log type: "${logType}"`);
return;
}
logMethod("@pixi/react", ...args);
}
exports.log = log;
//# sourceMappingURL=log.js.map