mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-03-30 12:21:57 +00:00
15 lines
430 B
JavaScript
15 lines
430 B
JavaScript
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
|
// This module is browser compatible.
|
|
export class DenoStdInternalError extends Error {
|
|
constructor(message) {
|
|
super(message);
|
|
this.name = "DenoStdInternalError";
|
|
}
|
|
}
|
|
/** Make an assertion, if not `true`, then throw. */
|
|
export function assert(expr, msg = "") {
|
|
if (!expr) {
|
|
throw new DenoStdInternalError(msg);
|
|
}
|
|
}
|