(x5, context)
| 10710 | return typeof x5 === "object" && x5 !== null || typeof x5 === "function"; |
| 10711 | } |
| 10712 | function assertObject(x5, context) { |
| 10713 | if (!isObject3(x5)) { |
| 10714 | throw new TypeError(`${context} is not an object.`); |
| 10715 | } |
| 10716 | } |
| 10717 | function assertRequiredArgument(x5, position, context) { |
| 10718 | if (x5 === void 0) { |
| 10719 | throw new TypeError(`Parameter ${position} is required in '${context}'.`); |
no test coverage detected
searching dependent graphs…