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

unreachable.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.import { AssertionError } from "./assertion_error.ts";
/** * Use this to assert unreachable code. * * @example * ```ts * import { unreachable } from "https://deno.land/std@$STD_VERSION/assert/unreachable.ts"; * * unreachable(); // Throws * ``` */export function unreachable(reason?: string): never { throw new AssertionError(reason ?? "unreachable");}
std

Version Info

Tagged at
3 weeks ago