mirror of
https://github.com/Redocly/redoc.git
synced 2025-02-15 09:20:32 +03:00
12 lines
201 B
TypeScript
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);
|
||
|
}
|
||
|
}
|