(str: string, onlyOnce?: boolean)
| 41 | } |
| 42 | |
| 43 | export function log(str: string, onlyOnce?: boolean) { |
| 44 | outputLog('log', str, onlyOnce); |
| 45 | } |
| 46 | |
| 47 | export function warn(str: string, onlyOnce?: boolean) { |
| 48 | outputLog('warn', str, onlyOnce); |
no test coverage detected