redoc/src/utils/debug.ts

12 lines
201 B
TypeScript
Raw Normal View History

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