* Throw if `conditiont` is not truthy. * * @param {*} condition * @param {string} message * @private
(condition, message)
| 523 | */ |
| 524 | |
| 525 | function assert(condition, message) { |
| 526 | if (!condition) throw new Error(message); |
| 527 | } |
| 528 | |
| 529 | /** |
| 530 | * Applies the first method that exists on `object` from `methods`. Otherwise |
no outgoing calls
no test coverage detected