()
| 87 | } |
| 88 | |
| 89 | export function clearWarnings() { |
| 90 | const warnings = Array.from(loggedWarns); |
| 91 | loggedWarns.length = 0; |
| 92 | return warnings; |
| 93 | } |
| 94 | |
| 95 | export function clearErrors() { |
| 96 | const errors = Array.from(loggedErrors); |
no outgoing calls
no test coverage detected