Skip to main content
Home
This release is 28 versions behind 1.0.16 — the latest version of @std/assert. Jump to latest

@std/assert@0.219.0
Built and signed on GitHub Actions

Common assertion functions, especially useful for testing

This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
This package works with Cloudflare Workers
This package works with Node.js
This package works with Deno
This package works with Bun
This package works with Browsers
JSR Score
100%
Published
2 years ago (0.219.0)
Package root>assert_false.ts
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. 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 * ```ts * import { assertFalse } from "@std/assert/assert_false"; * * assertFalse(false); // Doesn't throw * assertFalse(true); // Throws * ``` */ export function assertFalse(expr: unknown, msg = ""): asserts expr is Falsy { if (expr) { throw new AssertionError(msg); } }