2025-11-10 13:51:55 +00:00
|
|
|
import { getIsDevelopment } from "../config/domain";
|
|
|
|
|
|
2023-06-06 10:02:17 +00:00
|
|
|
export const devlog: typeof console.log = (...args) => {
|
2025-11-10 13:51:55 +00:00
|
|
|
if (getIsDevelopment()) console.log(...args);
|
2023-06-06 10:02:17 +00:00
|
|
|
};
|