Rename cli/js2 to cli/rt (#6857)

This commit is contained in:
Ryan Dahl 2020-07-23 10:27:26 -04:00 committed by GitHub
parent 090455936c
commit ca4dcb36dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
63 changed files with 6 additions and 6 deletions

View file

@ -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;
}
}