summaryrefslogtreecommitdiff
path: root/op_crates/web
diff options
context:
space:
mode:
Diffstat (limited to 'op_crates/web')
-rw-r--r--op_crates/web/00_dom_exception.js2
-rw-r--r--op_crates/web/01_event.js2
-rw-r--r--op_crates/web/02_abort_signal.js2
-rw-r--r--op_crates/web/08_text_encoding.js2
-rw-r--r--op_crates/web/11_url.js2
-rw-r--r--op_crates/web/12_location.js2
-rw-r--r--op_crates/web/21_filereader.js2
-rw-r--r--op_crates/web/Cargo.toml2
-rw-r--r--op_crates/web/abort_controller_test.js2
-rw-r--r--op_crates/web/event_target_test.js2
-rw-r--r--op_crates/web/event_test.js2
-rw-r--r--op_crates/web/lib.deno_web.d.ts2
-rw-r--r--op_crates/web/lib.rs2
-rw-r--r--op_crates/web/text_encoding_test.js2
14 files changed, 14 insertions, 14 deletions
diff --git a/op_crates/web/00_dom_exception.js b/op_crates/web/00_dom_exception.js
index 5fb130452..590a3c24f 100644
--- a/op_crates/web/00_dom_exception.js
+++ b/op_crates/web/00_dom_exception.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const nameToCodeMapping = Object.create(
diff --git a/op_crates/web/01_event.js b/op_crates/web/01_event.js
index fb80ea4a6..f4932179e 100644
--- a/op_crates/web/01_event.js
+++ b/op_crates/web/01_event.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
// This module follows most of the WHATWG Living Standard for the DOM logic.
// Many parts of the DOM are not implemented in Deno, but the logic for those
diff --git a/op_crates/web/02_abort_signal.js b/op_crates/web/02_abort_signal.js
index 412dab835..1bad13be3 100644
--- a/op_crates/web/02_abort_signal.js
+++ b/op_crates/web/02_abort_signal.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const { setIsTrusted } = window.__bootstrap.event;
diff --git a/op_crates/web/08_text_encoding.js b/op_crates/web/08_text_encoding.js
index cf435adc5..6a6b23f71 100644
--- a/op_crates/web/08_text_encoding.js
+++ b/op_crates/web/08_text_encoding.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
// The following code is based off of text-encoding at:
// https://github.com/inexorabletash/text-encoding
diff --git a/op_crates/web/11_url.js b/op_crates/web/11_url.js
index af70dad21..e4d45854b 100644
--- a/op_crates/web/11_url.js
+++ b/op_crates/web/11_url.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const core = window.Deno.core;
diff --git a/op_crates/web/12_location.js b/op_crates/web/12_location.js
index d56ccc1e4..79a9151f1 100644
--- a/op_crates/web/12_location.js
+++ b/op_crates/web/12_location.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const { URL } = window.__bootstrap.url;
diff --git a/op_crates/web/21_filereader.js b/op_crates/web/21_filereader.js
index 381517310..c82c52864 100644
--- a/op_crates/web/21_filereader.js
+++ b/op_crates/web/21_filereader.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const base64 = window.__bootstrap.base64;
diff --git a/op_crates/web/Cargo.toml b/op_crates/web/Cargo.toml
index 7134a5fd6..279bdd47f 100644
--- a/op_crates/web/Cargo.toml
+++ b/op_crates/web/Cargo.toml
@@ -1,4 +1,4 @@
-# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_web"
diff --git a/op_crates/web/abort_controller_test.js b/op_crates/web/abort_controller_test.js
index 2f26ade28..3f1cf18fd 100644
--- a/op_crates/web/abort_controller_test.js
+++ b/op_crates/web/abort_controller_test.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
function assert(cond) {
if (!cond) {
throw Error("assert");
diff --git a/op_crates/web/event_target_test.js b/op_crates/web/event_target_test.js
index 5e86c6efb..67e323571 100644
--- a/op_crates/web/event_target_test.js
+++ b/op_crates/web/event_target_test.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
function assert(cond) {
if (!cond) {
throw Error("assert");
diff --git a/op_crates/web/event_test.js b/op_crates/web/event_test.js
index 00459c442..6e57e0e8d 100644
--- a/op_crates/web/event_test.js
+++ b/op_crates/web/event_test.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
function assert(cond) {
if (!cond) {
throw Error("assert");
diff --git a/op_crates/web/lib.deno_web.d.ts b/op_crates/web/lib.deno_web.d.ts
index f6c2e240f..e9a6bc8ee 100644
--- a/op_crates/web/lib.deno_web.d.ts
+++ b/op_crates/web/lib.deno_web.d.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
// deno-lint-ignore-file no-explicit-any
diff --git a/op_crates/web/lib.rs b/op_crates/web/lib.rs
index 33bb0a33f..79f810fb5 100644
--- a/op_crates/web/lib.rs
+++ b/op_crates/web/lib.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
use deno_core::error::uri_error;
use deno_core::error::AnyError;
diff --git a/op_crates/web/text_encoding_test.js b/op_crates/web/text_encoding_test.js
index 35fe6a212..2c7cbd641 100644
--- a/op_crates/web/text_encoding_test.js
+++ b/op_crates/web/text_encoding_test.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
function assert(cond) {
if (!cond) {
throw Error("assert");