(condition: boolean, ...args: ReadonlyArray<any>)
| 52 | |
| 53 | /** @internal */ |
| 54 | export const assert = (condition: boolean, ...args: ReadonlyArray<any>) => |
| 55 | consoleWith((_) => _.assert(condition, ...args)) |
| 56 | |
| 57 | /** @internal */ |
| 58 | export const clear = consoleWith((_) => _.clear) |