(check, message, code, info)
| 147 | * @see [[api:makeError]] |
| 148 | */ |
| 149 | export function assert(check, message, code, info) { |
| 150 | if (!check) { |
| 151 | throw makeError(message, code, info); |
| 152 | } |
| 153 | } |
| 154 | /** |
| 155 | * A simple helper to simply ensuring provided arguments match expected |
| 156 | * constraints, throwing if not. |
no test coverage detected