Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

std/assert/mod.ts>fail

The Deno Standard Library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function fail
import { fail } from "https://deno.land/std@0.222.0/assert/mod.ts";

Forcefully throws a failed assertion.

Examples

Example 1

import { fail } from "https://deno.land/std@0.222.0/assert/fail.ts";

fail("Deliberately failed!"); // Throws

Parameters

optional
msg: string

Returns

never