redoc/src/utils/debug.ts

12 lines
249 B
TypeScript
Raw Normal View History

export function debugTime(label: string) {
2018-03-17 18:58:28 +03:00
if (process.env.NODE_ENV !== 'production') {
console.time(label);
}
}
export function debugTimeEnd(label: string) {
2018-03-17 18:58:28 +03:00
if (process.env.NODE_ENV !== 'production') {
console.timeEnd(label);
}
}