(condition: any, message: string = "no additional info provided")
| 1 | export function assert(condition: any, message: string = "no additional info provided"): asserts condition { |
| 2 | if (!condition) { |
| 3 | throw new Error("Assertion Error: " + message); |
| 4 | } |
| 5 | } |
no outgoing calls
searching dependent graphs…