UIKit/lib/utils/devlog.ts

5 lines
163 B
TypeScript
Raw Normal View History

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