@oazmi/build-tools
Version:
general deno build tool scripts which I practically use in all of my typescript repos
16 lines • 510 B
TypeScript
/**
* Make an assertion, error will be thrown if `expr` does not have truthy value.
*
* @example Usage
* ```ts no-eval
* import { assert } from "@std/assert/assert";
*
* assert("hello".includes("ello")); // Doesn't throw
* assert("hello".includes("world")); // Throws
* ```
*
* @param expr The expression to test.
* @param msg The optional message to display if the assertion fails.
*/
export declare function assert(expr: unknown, msg?: string): asserts expr;
//# sourceMappingURL=assert.d.ts.map