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

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

Works with
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 Score100%
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}`); }