3 lines
118 B
TypeScript
3 lines
118 B
TypeScript
export const devlog: typeof console.log = (...args) => {
|
|
if (window.the_domain === "dev") console.log(...args);
|
|
}; |