mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
47c38498eb
Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com>
27 lines
790 B
TypeScript
27 lines
790 B
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
// This module is browser compatible.
|
|
import { AssertionError } from "./assertion_error.ts";
|
|
|
|
/** Assertion condition for {@linkcode assertFalse}. */
|
|
export type Falsy = false | 0 | 0n | "" | null | undefined;
|
|
|
|
/**
|
|
* Make an assertion, error will be thrown if `expr` have truthy value.
|
|
*
|
|
* @example Usage
|
|
* ```ts no-eval
|
|
* import { assertFalse } from "@std/assert/assert-false";
|
|
*
|
|
* assertFalse(false); // Doesn't throw
|
|
* assertFalse(true); // Throws
|
|
* ```
|
|
*
|
|
* @param expr The expression to test.
|
|
* @param msg The optional message to display if the assertion fails.
|
|
*/
|
|
export function assertFalse(expr: unknown, msg = ""): asserts expr is Falsy {
|
|
if (expr) {
|
|
throw new AssertionError(msg);
|
|
}
|
|
}
|