redoc/src/utils/debug.ts
2018-03-07 17:14:23 +02:00

12 lines
201 B
TypeScript

export function debugTime(label: string) {
if (__REDOC_DEV__) {
console.time(label);
}
}
export function debugTimeEnd(label: string) {
if (__REDOC_DEV__) {
console.timeEnd(label);
}
}