mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
0b2497f16e
* fix: update codebase to work with Deno RC * work * fix * fix * fix * fixes * work * update * fixes * fix * revert
24 lines
680 B
TypeScript
24 lines
680 B
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
// This module is browser compatible.
|
|
import { AssertionError } from "./assertion_error.ts";
|
|
|
|
/**
|
|
* Make an assertion, error will be thrown if `expr` does not have truthy value.
|
|
*
|
|
* @example Usage
|
|
* ```ts ignore
|
|
* import { assert } from "@std/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 function assert(expr: unknown, msg = ""): asserts expr {
|
|
if (!expr) {
|
|
throw new AssertionError(msg);
|
|
}
|
|
}
|