This release is 6 versions behind 1.0.16 — the latest version of @std/assert. Jump to latest
Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
Works with
•JSR Score100%•This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers




Downloads89,210/wk
•Publisheda year ago (1.0.10)
Common assertion functions, especially useful for testing
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // This module is browser compatible. import { AssertionError } from "./assertion_error.ts"; /** * Forcefully throws a failed assertion. * * @example Usage * ```ts ignore * import { fail } from "@std/assert"; * * fail("Deliberately failed!"); // Throws * ``` * * @param msg Optional message to include in the error. * @returns Never returns, always throws. */ export function fail(msg?: string): never { const msgSuffix = msg ? `: ${msg}` : "."; throw new AssertionError(`Failed assertion${msgSuffix}`); }