@worker-tools/deno-kv-storage
Version:
An implementation of the StorageArea (1,2,3) interface for Deno with an extensible system for supporting various database backends.
19 lines • 623 B
JavaScript
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
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;
//# sourceMappingURL=assert.js.map
;