(obj, context)
| 10697 | return typeof x5 === "object" || typeof x5 === "function"; |
| 10698 | } |
| 10699 | function assertDictionary(obj, context) { |
| 10700 | if (obj !== void 0 && !isDictionary(obj)) { |
| 10701 | throw new TypeError(`${context} is not an object.`); |
| 10702 | } |
| 10703 | } |
| 10704 | function assertFunction(x5, context) { |
| 10705 | if (typeof x5 !== "function") { |
| 10706 | throw new TypeError(`${context} is not a function.`); |
no test coverage detected
searching dependent graphs…