summaryrefslogtreecommitdiff
path: root/cli/rt/00_dom_exception.js
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-08-07 16:55:02 +0200
committerGitHub <noreply@github.com>2020-08-07 16:55:02 +0200
commit41215eb29c50cdf7048f7431076ccc986b514f6d (patch)
tree519d44a39dbd01e6175abf9302f105d67ce2cc52 /cli/rt/00_dom_exception.js
parentd7dcbab3efeeac5233c9cedb6edacc7202515449 (diff)
Op crate for Web APIs (#6906)
Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
Diffstat (limited to 'cli/rt/00_dom_exception.js')
-rw-r--r--cli/rt/00_dom_exception.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/cli/rt/00_dom_exception.js b/cli/rt/00_dom_exception.js
deleted file mode 100644
index 6d72779b0..000000000
--- a/cli/rt/00_dom_exception.js
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
-
-// eslint-disable-next-line @typescript-eslint/no-unused-vars
-class DOMException extends Error {
- #name = "";
-
- constructor(message = "", name = "Error") {
- super(message);
- this.#name = name;
- }
-
- get name() {
- return this.#name;
- }
-}