feat: add better provider support, icons, regen, and a lot more
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
export function assert(condition: unknown, message?: string): asserts condition {
|
||||
if (!condition) {
|
||||
throw new Error(message || "Assertion failed");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user