summaryrefslogtreecommitdiff
path: root/ext/web
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-01-02 16:00:42 -0500
committerGitHub <noreply@github.com>2023-01-02 21:00:42 +0000
commit10e4b2e14046b74469f7310c599579a6611513fe (patch)
treef6e446cb97d1df8b7413f3bf3a9c897ff487b275 /ext/web
parentf729576b2db2aa6ce000a598ad2e45533f686213 (diff)
chore: update copyright year to 2023 (#17247)
Yearly tradition of creating extra noise in git.
Diffstat (limited to 'ext/web')
-rw-r--r--ext/web/00_infra.js2
-rw-r--r--ext/web/01_dom_exception.js2
-rw-r--r--ext/web/01_mimesniff.js2
-rw-r--r--ext/web/02_event.js2
-rw-r--r--ext/web/02_structured_clone.js2
-rw-r--r--ext/web/02_timers.js2
-rw-r--r--ext/web/03_abort_signal.js2
-rw-r--r--ext/web/04_global_interfaces.js2
-rw-r--r--ext/web/05_base64.js2
-rw-r--r--ext/web/06_streams.js2
-rw-r--r--ext/web/06_streams_types.d.ts2
-rw-r--r--ext/web/08_text_encoding.js2
-rw-r--r--ext/web/09_file.js2
-rw-r--r--ext/web/10_filereader.js2
-rw-r--r--ext/web/11_blob_url.js2
-rw-r--r--ext/web/12_location.js2
-rw-r--r--ext/web/13_message_port.js2
-rw-r--r--ext/web/14_compression.js2
-rw-r--r--ext/web/15_performance.js2
-rw-r--r--ext/web/Cargo.toml2
-rw-r--r--ext/web/compression.rs2
-rw-r--r--ext/web/internal.d.ts2
-rw-r--r--ext/web/lib.deno_web.d.ts2
-rw-r--r--ext/web/lib.rs2
-rw-r--r--ext/web/timers.rs2
25 files changed, 25 insertions, 25 deletions
diff --git a/ext/web/00_infra.js b/ext/web/00_infra.js
index 9a9db5c22..3f3f98165 100644
--- a/ext/web/00_infra.js
+++ b/ext/web/00_infra.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// @ts-check
/// <reference path="../../core/internal.d.ts" />
diff --git a/ext/web/01_dom_exception.js b/ext/web/01_dom_exception.js
index e278c8652..63b82b01f 100644
--- a/ext/web/01_dom_exception.js
+++ b/ext/web/01_dom_exception.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// @ts-check
/// <reference path="../../core/internal.d.ts" />
diff --git a/ext/web/01_mimesniff.js b/ext/web/01_mimesniff.js
index 47453bd99..f0f02d53a 100644
--- a/ext/web/01_mimesniff.js
+++ b/ext/web/01_mimesniff.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// @ts-check
/// <reference path="../../core/internal.d.ts" />
diff --git a/ext/web/02_event.js b/ext/web/02_event.js
index 060101498..3e7a4d108 100644
--- a/ext/web/02_event.js
+++ b/ext/web/02_event.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 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/ext/web/02_structured_clone.js b/ext/web/02_structured_clone.js
index 62bb48ebd..f8a88a7ef 100644
--- a/ext/web/02_structured_clone.js
+++ b/ext/web/02_structured_clone.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// @ts-check
/// <reference path="../../core/lib.deno_core.d.ts" />
diff --git a/ext/web/02_timers.js b/ext/web/02_timers.js
index 0fc808796..a582cf428 100644
--- a/ext/web/02_timers.js
+++ b/ext/web/02_timers.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/ext/web/03_abort_signal.js b/ext/web/03_abort_signal.js
index 70511a934..cce1bac7e 100644
--- a/ext/web/03_abort_signal.js
+++ b/ext/web/03_abort_signal.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
"use strict";
// @ts-check
diff --git a/ext/web/04_global_interfaces.js b/ext/web/04_global_interfaces.js
index 503b8fd08..840f93ba9 100644
--- a/ext/web/04_global_interfaces.js
+++ b/ext/web/04_global_interfaces.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
"use strict";
// @ts-check
diff --git a/ext/web/05_base64.js b/ext/web/05_base64.js
index d963596ce..dac366ca0 100644
--- a/ext/web/05_base64.js
+++ b/ext/web/05_base64.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// @ts-check
/// <reference path="../../core/internal.d.ts" />
diff --git a/ext/web/06_streams.js b/ext/web/06_streams.js
index 2a032b326..67fbaa6c9 100644
--- a/ext/web/06_streams.js
+++ b/ext/web/06_streams.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// @ts-check
/// <reference path="../webidl/internal.d.ts" />
diff --git a/ext/web/06_streams_types.d.ts b/ext/web/06_streams_types.d.ts
index 98d402f24..47ad2c650 100644
--- a/ext/web/06_streams_types.d.ts
+++ b/ext/web/06_streams_types.d.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// ** Internal Interfaces **
diff --git a/ext/web/08_text_encoding.js b/ext/web/08_text_encoding.js
index bf4b33808..b1dc6d411 100644
--- a/ext/web/08_text_encoding.js
+++ b/ext/web/08_text_encoding.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// @ts-check
/// <reference path="../../core/lib.deno_core.d.ts" />
diff --git a/ext/web/09_file.js b/ext/web/09_file.js
index 9c3a36dc0..92de61e1f 100644
--- a/ext/web/09_file.js
+++ b/ext/web/09_file.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// @ts-check
/// <reference no-default-lib="true" />
diff --git a/ext/web/10_filereader.js b/ext/web/10_filereader.js
index 30396a8d0..bd5ee85be 100644
--- a/ext/web/10_filereader.js
+++ b/ext/web/10_filereader.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// @ts-check
/// <reference no-default-lib="true" />
diff --git a/ext/web/11_blob_url.js b/ext/web/11_blob_url.js
index 9a705f391..a51a1e718 100644
--- a/ext/web/11_blob_url.js
+++ b/ext/web/11_blob_url.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// @ts-check
/// <reference no-default-lib="true" />
diff --git a/ext/web/12_location.js b/ext/web/12_location.js
index 570eeab0f..964ca591e 100644
--- a/ext/web/12_location.js
+++ b/ext/web/12_location.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
"use strict";
/// <reference path="../../core/internal.d.ts" />
diff --git a/ext/web/13_message_port.js b/ext/web/13_message_port.js
index 847daba26..f589ac91f 100644
--- a/ext/web/13_message_port.js
+++ b/ext/web/13_message_port.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// @ts-check
/// <reference path="../../core/lib.deno_core.d.ts" />
diff --git a/ext/web/14_compression.js b/ext/web/14_compression.js
index c56954c74..338f8c803 100644
--- a/ext/web/14_compression.js
+++ b/ext/web/14_compression.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// @ts-check
/// <reference path="../../core/lib.deno_core.d.ts" />
diff --git a/ext/web/15_performance.js b/ext/web/15_performance.js
index 556cfa774..9107ce75b 100644
--- a/ext/web/15_performance.js
+++ b/ext/web/15_performance.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/ext/web/Cargo.toml b/ext/web/Cargo.toml
index 16bbcdc4a..21e083148 100644
--- a/ext/web/Cargo.toml
+++ b/ext/web/Cargo.toml
@@ -1,4 +1,4 @@
-# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_web"
diff --git a/ext/web/compression.rs b/ext/web/compression.rs
index d2647e498..ee129fe5a 100644
--- a/ext/web/compression.rs
+++ b/ext/web/compression.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use deno_core::error::AnyError;
use deno_core::op;
diff --git a/ext/web/internal.d.ts b/ext/web/internal.d.ts
index 9e836aac0..9bb89d98e 100644
--- a/ext/web/internal.d.ts
+++ b/ext/web/internal.d.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// deno-lint-ignore-file no-var
diff --git a/ext/web/lib.deno_web.d.ts b/ext/web/lib.deno_web.d.ts
index 8da12badf..e1ffdc329 100644
--- a/ext/web/lib.deno_web.d.ts
+++ b/ext/web/lib.deno_web.d.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// deno-lint-ignore-file no-explicit-any no-var
diff --git a/ext/web/lib.rs b/ext/web/lib.rs
index cfbcee6e3..a270882a9 100644
--- a/ext/web/lib.rs
+++ b/ext/web/lib.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
mod blob;
mod compression;
diff --git a/ext/web/timers.rs b/ext/web/timers.rs
index 6026b7c3b..252cd4ad4 100644
--- a/ext/web/timers.rs
+++ b/ext/web/timers.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
//! This module helps deno implement timers and performance APIs.