mirror of
https://github.com/Redocly/redoc.git
synced 2025-03-10 21:05:47 +03:00
12 lines
249 B
TypeScript
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);
|
|
}
|
|
}
|