(shouldBeBoolean, opt_message)
| 140 | * @throws {Error} when shouldBeBoolean is not an Boolean |
| 141 | */ |
| 142 | export function userAssertBoolean(shouldBeBoolean, opt_message) { |
| 143 | return assertions.assertBoolean( |
| 144 | /** @type {import('./base').AssertionFunctionDef} */ (userAssert), |
| 145 | shouldBeBoolean, |
| 146 | opt_message |
| 147 | ); |
| 148 | } |
nothing calls this directly
no test coverage detected