deno.land / std@0.157.0 / _util / assert.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
export class DenoStdInternalError extends Error { constructor(message: string) { super(message); this.name = "DenoStdInternalError"; }}
/** Make an assertion, if not `true`, then throw. */export function assert(expr: unknown, msg = ""): asserts expr { if (!expr) { throw new DenoStdInternalError(msg); }}
std

Version Info

Tagged at
a year ago