UNPKG

@deno/kv

Version:

A Deno KV client library optimized for Node.js.

13 lines (12 loc) 362 B
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. export class AssertionError extends Error { constructor(message) { super(message); Object.defineProperty(this, "name", { enumerable: true, configurable: true, writable: true, value: "AssertionError" }); } }