summaryrefslogtreecommitdiff
path: root/runtime/js
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2022-01-07 22:09:52 -0500
committerGitHub <noreply@github.com>2022-01-07 22:09:52 -0500
commit1fb5858009f598ce3f917f9f49c466db81f4d9b0 (patch)
treed11d37479040ee3adeaca5b828fddb8e7fd927a0 /runtime/js
parent12423e16b7df39b2bf995efd1376ba4b6ef41e02 (diff)
chore: update copyright to 2022 (#13306)
Co-authored-by: Erfan Safari <erfanshield@outlook.com>
Diffstat (limited to 'runtime/js')
-rw-r--r--runtime/js/01_build.js2
-rw-r--r--runtime/js/01_errors.js2
-rw-r--r--runtime/js/01_version.js2
-rw-r--r--runtime/js/01_web_util.js2
-rw-r--r--runtime/js/06_util.js2
-rw-r--r--runtime/js/10_permissions.js2
-rw-r--r--runtime/js/11_workers.js2
-rw-r--r--runtime/js/12_io.js2
-rw-r--r--runtime/js/13_buffer.js2
-rw-r--r--runtime/js/30_fs.js2
-rw-r--r--runtime/js/30_os.js2
-rw-r--r--runtime/js/40_compiler_api.js2
-rw-r--r--runtime/js/40_diagnostics.js2
-rw-r--r--runtime/js/40_error_stack.js2
-rw-r--r--runtime/js/40_files.js2
-rw-r--r--runtime/js/40_fs_events.js2
-rw-r--r--runtime/js/40_http.js2
-rw-r--r--runtime/js/40_process.js2
-rw-r--r--runtime/js/40_read_file.js2
-rw-r--r--runtime/js/40_signals.js2
-rw-r--r--runtime/js/40_testing.js2
-rw-r--r--runtime/js/40_tty.js2
-rw-r--r--runtime/js/40_write_file.js2
-rw-r--r--runtime/js/41_prompt.js2
-rw-r--r--runtime/js/90_deno_ns.js2
-rw-r--r--runtime/js/99_main.js2
26 files changed, 26 insertions, 26 deletions
diff --git a/runtime/js/01_build.js b/runtime/js/01_build.js
index 94b0feea3..57ac13883 100644
--- a/runtime/js/01_build.js
+++ b/runtime/js/01_build.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/01_errors.js b/runtime/js/01_errors.js
index 844a8872a..ff2cf89fa 100644
--- a/runtime/js/01_errors.js
+++ b/runtime/js/01_errors.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/01_version.js b/runtime/js/01_version.js
index d25a5175d..bd89c6a1e 100644
--- a/runtime/js/01_version.js
+++ b/runtime/js/01_version.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/01_web_util.js b/runtime/js/01_web_util.js
index ca3d74826..450ad5743 100644
--- a/runtime/js/01_web_util.js
+++ b/runtime/js/01_web_util.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/06_util.js b/runtime/js/06_util.js
index 97c0adea4..9b255615e 100644
--- a/runtime/js/06_util.js
+++ b/runtime/js/06_util.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/10_permissions.js b/runtime/js/10_permissions.js
index a6884aab9..f3498b950 100644
--- a/runtime/js/10_permissions.js
+++ b/runtime/js/10_permissions.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/11_workers.js b/runtime/js/11_workers.js
index 8f0095056..4510004d6 100644
--- a/runtime/js/11_workers.js
+++ b/runtime/js/11_workers.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/12_io.js b/runtime/js/12_io.js
index 213e0a1ee..2e466c81f 100644
--- a/runtime/js/12_io.js
+++ b/runtime/js/12_io.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
// Interfaces 100% copied from Go.
// Documentation liberally lifted from them too.
diff --git a/runtime/js/13_buffer.js b/runtime/js/13_buffer.js
index fe5e5a223..d62092010 100644
--- a/runtime/js/13_buffer.js
+++ b/runtime/js/13_buffer.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
// This code has been ported almost directly from Go's src/bytes/buffer.go
// Copyright 2009 The Go Authors. All rights reserved. BSD license.
diff --git a/runtime/js/30_fs.js b/runtime/js/30_fs.js
index feb9f8f54..bdd575f19 100644
--- a/runtime/js/30_fs.js
+++ b/runtime/js/30_fs.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/30_os.js b/runtime/js/30_os.js
index f6bada6a5..4c3c18846 100644
--- a/runtime/js/30_os.js
+++ b/runtime/js/30_os.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/40_compiler_api.js b/runtime/js/40_compiler_api.js
index 4d5cda398..011373eb0 100644
--- a/runtime/js/40_compiler_api.js
+++ b/runtime/js/40_compiler_api.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
// @ts-check
diff --git a/runtime/js/40_diagnostics.js b/runtime/js/40_diagnostics.js
index f4ab67689..a6aba7b2e 100644
--- a/runtime/js/40_diagnostics.js
+++ b/runtime/js/40_diagnostics.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
// Diagnostic provides an abstraction for advice/errors received from a
// compiler, which is strongly influenced by the format of TypeScript
diff --git a/runtime/js/40_error_stack.js b/runtime/js/40_error_stack.js
index c8f2aff5a..7ed463273 100644
--- a/runtime/js/40_error_stack.js
+++ b/runtime/js/40_error_stack.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/40_files.js b/runtime/js/40_files.js
index dfd471750..d7768375b 100644
--- a/runtime/js/40_files.js
+++ b/runtime/js/40_files.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/40_fs_events.js b/runtime/js/40_fs_events.js
index 8402cb459..27825eaac 100644
--- a/runtime/js/40_fs_events.js
+++ b/runtime/js/40_fs_events.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/40_http.js b/runtime/js/40_http.js
index d68b4f45c..9afca0f5b 100644
--- a/runtime/js/40_http.js
+++ b/runtime/js/40_http.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/40_process.js b/runtime/js/40_process.js
index 26d452a4d..8d9f402ff 100644
--- a/runtime/js/40_process.js
+++ b/runtime/js/40_process.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/40_read_file.js b/runtime/js/40_read_file.js
index 5e90b523a..5862454db 100644
--- a/runtime/js/40_read_file.js
+++ b/runtime/js/40_read_file.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/40_signals.js b/runtime/js/40_signals.js
index 2498c40d7..d387b068f 100644
--- a/runtime/js/40_signals.js
+++ b/runtime/js/40_signals.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/40_testing.js b/runtime/js/40_testing.js
index 90da6ddb0..118db5db1 100644
--- a/runtime/js/40_testing.js
+++ b/runtime/js/40_testing.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/40_tty.js b/runtime/js/40_tty.js
index e76d7d90e..1abed5f25 100644
--- a/runtime/js/40_tty.js
+++ b/runtime/js/40_tty.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/40_write_file.js b/runtime/js/40_write_file.js
index bb3f91789..8eac953d4 100644
--- a/runtime/js/40_write_file.js
+++ b/runtime/js/40_write_file.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
const { stat, statSync, chmod, chmodSync } = window.__bootstrap.fs;
diff --git a/runtime/js/41_prompt.js b/runtime/js/41_prompt.js
index e941461de..3dc9f4a40 100644
--- a/runtime/js/41_prompt.js
+++ b/runtime/js/41_prompt.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
const { stdin } = window.__bootstrap.files;
diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js
index 029423ee1..b19f6d575 100644
--- a/runtime/js/90_deno_ns.js
+++ b/runtime/js/90_deno_ns.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js
index 5a2d2bc3f..190ff24da 100644
--- a/runtime/js/99_main.js
+++ b/runtime/js/99_main.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
// Removes the `__proto__` for security reasons. This intentionally makes
// Deno non compliant with ECMA-262 Annex B.2.2.1
//