(label?: string)
| 99 | |
| 100 | /** @internal */ |
| 101 | export const time = (label?: string) => |
| 102 | consoleWith((_) => |
| 103 | fiberRuntime.acquireRelease( |
| 104 | _.time(label), |
| 105 | () => _.timeEnd(label) |
| 106 | ) |
| 107 | ) |
| 108 | |
| 109 | /** @internal */ |
| 110 | export const timeLog = (label?: string, ...args: ReadonlyArray<any>) => consoleWith((_) => _.timeLog(label, ...args)) |
nothing calls this directly
no test coverage detected