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