deno.land / std@0.224.0 / assert / assert_false.ts

assert_false.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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 * ```ts * import { assertFalse } from "https://deno.land/std@$STD_VERSION/assert/assert_false.ts"; * * assertFalse(false); // Doesn't throw * assertFalse(true); // Throws * ``` */export function assertFalse(expr: unknown, msg = ""): asserts expr is Falsy { if (expr) { throw new AssertionError(msg); }}
std

Version Info

Tagged at
3 weeks ago