(expr: unknown, msg = "")
| 21 | * @throws {AssertionError} If `expr` is truthy. |
| 22 | */ |
| 23 | export function assertFalse(expr: unknown, msg = ""): asserts expr is Falsy { |
| 24 | if (expr) { |
| 25 | throw new AssertionError(msg); |
| 26 | } |
| 27 | } |
no outgoing calls
no test coverage detected