summaryrefslogtreecommitdiff
path: root/op_crates
diff options
context:
space:
mode:
Diffstat (limited to 'op_crates')
-rw-r--r--op_crates/crypto/01_crypto.js2
-rw-r--r--op_crates/crypto/Cargo.toml2
-rw-r--r--op_crates/crypto/lib.rs2
-rw-r--r--op_crates/fetch/01_fetch_util.js2
-rw-r--r--op_crates/fetch/03_dom_iterable.js2
-rw-r--r--op_crates/fetch/11_streams.js2
-rw-r--r--op_crates/fetch/20_headers.js2
-rw-r--r--op_crates/fetch/26_fetch.js2
-rw-r--r--op_crates/fetch/Cargo.toml2
-rw-r--r--op_crates/fetch/lib.deno_fetch.d.ts2
-rw-r--r--op_crates/fetch/lib.rs2
-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
-rw-r--r--op_crates/websocket/01_websocket.js2
-rw-r--r--op_crates/websocket/Cargo.toml2
-rw-r--r--op_crates/websocket/lib.deno_websocket.d.ts2
-rw-r--r--op_crates/websocket/lib.rs2
29 files changed, 29 insertions, 29 deletions
diff --git a/op_crates/crypto/01_crypto.js b/op_crates/crypto/01_crypto.js
index d0b0d98c7..27f630b7e 100644
--- a/op_crates/crypto/01_crypto.js
+++ b/op_crates/crypto/01_crypto.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/crypto/Cargo.toml b/op_crates/crypto/Cargo.toml
index a08e30d56..00db3ddb7 100644
--- a/op_crates/crypto/Cargo.toml
+++ b/op_crates/crypto/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_crypto"
diff --git a/op_crates/crypto/lib.rs b/op_crates/crypto/lib.rs
index a211a29b3..d7644166c 100644
--- a/op_crates/crypto/lib.rs
+++ b/op_crates/crypto/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.
#![deny(warnings)]
diff --git a/op_crates/fetch/01_fetch_util.js b/op_crates/fetch/01_fetch_util.js
index 07f45d821..b747037bd 100644
--- a/op_crates/fetch/01_fetch_util.js
+++ b/op_crates/fetch/01_fetch_util.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) => {
function requiredArguments(
diff --git a/op_crates/fetch/03_dom_iterable.js b/op_crates/fetch/03_dom_iterable.js
index bea60b61f..54e1c9227 100644
--- a/op_crates/fetch/03_dom_iterable.js
+++ b/op_crates/fetch/03_dom_iterable.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 { requiredArguments } = window.__bootstrap.fetchUtil;
diff --git a/op_crates/fetch/11_streams.js b/op_crates/fetch/11_streams.js
index 69787d24a..0704465cc 100644
--- a/op_crates/fetch/11_streams.js
+++ b/op_crates/fetch/11_streams.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 code closely follows the WHATWG Stream Specification
// See: https://streams.spec.whatwg.org/
diff --git a/op_crates/fetch/20_headers.js b/op_crates/fetch/20_headers.js
index 4202bea41..7ee19945e 100644
--- a/op_crates/fetch/20_headers.js
+++ b/op_crates/fetch/20_headers.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 { DomIterableMixin } = window.__bootstrap.domIterable;
diff --git a/op_crates/fetch/26_fetch.js b/op_crates/fetch/26_fetch.js
index 2d50f1142..f5147d6b9 100644
--- a/op_crates/fetch/26_fetch.js
+++ b/op_crates/fetch/26_fetch.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/fetch/Cargo.toml b/op_crates/fetch/Cargo.toml
index 855695475..6916685fb 100644
--- a/op_crates/fetch/Cargo.toml
+++ b/op_crates/fetch/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_fetch"
diff --git a/op_crates/fetch/lib.deno_fetch.d.ts b/op_crates/fetch/lib.deno_fetch.d.ts
index 0b3036e2c..30c031747 100644
--- a/op_crates/fetch/lib.deno_fetch.d.ts
+++ b/op_crates/fetch/lib.deno_fetch.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/fetch/lib.rs b/op_crates/fetch/lib.rs
index 0a2623c34..b47039b08 100644
--- a/op_crates/fetch/lib.rs
+++ b/op_crates/fetch/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.
#![deny(warnings)]
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");
diff --git a/op_crates/websocket/01_websocket.js b/op_crates/websocket/01_websocket.js
index 741e643e5..ac7c96b2a 100644
--- a/op_crates/websocket/01_websocket.js
+++ b/op_crates/websocket/01_websocket.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/websocket/Cargo.toml b/op_crates/websocket/Cargo.toml
index 20fba9804..c4d9a27ec 100644
--- a/op_crates/websocket/Cargo.toml
+++ b/op_crates/websocket/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_websocket"
diff --git a/op_crates/websocket/lib.deno_websocket.d.ts b/op_crates/websocket/lib.deno_websocket.d.ts
index d47665c8b..31e5782a6 100644
--- a/op_crates/websocket/lib.deno_websocket.d.ts
+++ b/op_crates/websocket/lib.deno_websocket.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/websocket/lib.rs b/op_crates/websocket/lib.rs
index e15bab827..f43ce8b42 100644
--- a/op_crates/websocket/lib.rs
+++ b/op_crates/websocket/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::bad_resource_id;
use deno_core::error::type_error;