mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-04-04 14:29:47 +00:00
chore: Update deps
This commit is contained in:
19
lib/script/deps/deno.land/std@0.140.0/_util/assert.js
Normal file
19
lib/script/deps/deno.land/std@0.140.0/_util/assert.js
Normal file
@@ -0,0 +1,19 @@
|
||||
"use strict";
|
||||
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
||||
// This module is browser compatible.
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.assert = exports.DenoStdInternalError = void 0;
|
||||
class DenoStdInternalError extends Error {
|
||||
constructor(message) {
|
||||
super(message);
|
||||
this.name = "DenoStdInternalError";
|
||||
}
|
||||
}
|
||||
exports.DenoStdInternalError = DenoStdInternalError;
|
||||
/** Make an assertion, if not `true`, then throw. */
|
||||
function assert(expr, msg = "") {
|
||||
if (!expr) {
|
||||
throw new DenoStdInternalError(msg);
|
||||
}
|
||||
}
|
||||
exports.assert = assert;
|
||||
Reference in New Issue
Block a user