mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
11 lines
301 B
TypeScript
11 lines
301 B
TypeScript
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
||
|
import { assert } from "./assert.ts";
|
||
|
|
||
|
/**
|
||
|
* Forcefully throws a failed assertion
|
||
|
*/
|
||
|
export function fail(msg?: string): never {
|
||
|
const msgSuffix = msg ? `: ${msg}` : ".";
|
||
|
assert(false, `Failed assertion${msgSuffix}`);
|
||
|
}
|