redoc/src/utils/debug.ts
2018-03-17 17:58:28 +02:00

12 lines
249 B
TypeScript

export function debugTime(label: string) {
if (process.env.NODE_ENV !== 'production') {
console.time(label);
}
}
export function debugTimeEnd(label: string) {
if (process.env.NODE_ENV !== 'production') {
console.timeEnd(label);
}
}