import { getIsDevelopment } from "../config/domain"; export const devlog: typeof console.log = (...args) => { if (getIsDevelopment()) console.log(...args); };