Initial commit

This commit is contained in:
2026-06-13 10:11:59 -04:00
commit 77fc1e2f74
82 changed files with 9164 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
const noop = () => {};
const isSilent = false;
export const logUtil = {
log: isSilent ? noop : console.log.bind(console),
info: isSilent ? noop : console.info.bind(console),
warn: isSilent ? noop : console.warn.bind(console),
error: isSilent ? noop : console.error.bind(console),
};