( value: unknown, constructor: C, message?: string, ..._: Array<never> )
| 48 | } |
| 49 | } |
| 50 | |
| 51 | export function doesNotThrow(thunk: () => void, message?: string, ..._: Array<never>) { |
| 52 | assert.doesNotThrow(thunk, message) |
| 53 | } |
| 54 | |
| 55 | // ---------------------------- |
| 56 | // Derived |
| 57 | // ---------------------------- |
| 58 | |
| 59 | /** |
| 60 | * Asserts that `value` is an instance of `constructor`. |
no outgoing calls
searching dependent graphs…