diff options
Diffstat (limited to 'ext/fetch')
-rw-r--r-- | ext/fetch/01_fetch_util.js | 2 | ||||
-rw-r--r-- | ext/fetch/20_headers.js | 2 | ||||
-rw-r--r-- | ext/fetch/21_formdata.js | 2 | ||||
-rw-r--r-- | ext/fetch/22_body.js | 2 | ||||
-rw-r--r-- | ext/fetch/22_http_client.js | 2 | ||||
-rw-r--r-- | ext/fetch/23_request.js | 2 | ||||
-rw-r--r-- | ext/fetch/23_response.js | 2 | ||||
-rw-r--r-- | ext/fetch/26_fetch.js | 2 | ||||
-rw-r--r-- | ext/fetch/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/fetch/fs_fetch_handler.rs | 2 | ||||
-rw-r--r-- | ext/fetch/lib.rs | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/ext/fetch/01_fetch_util.js b/ext/fetch/01_fetch_util.js index 9cf19588b..dad23b6e5 100644 --- a/ext/fetch/01_fetch_util.js +++ b/ext/fetch/01_fetch_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/ext/fetch/20_headers.js b/ext/fetch/20_headers.js index c6b40d520..b1299fb1b 100644 --- a/ext/fetch/20_headers.js +++ b/ext/fetch/20_headers.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 /// <reference path="../webidl/internal.d.ts" /> diff --git a/ext/fetch/21_formdata.js b/ext/fetch/21_formdata.js index 555e31a69..cc338de72 100644 --- a/ext/fetch/21_formdata.js +++ b/ext/fetch/21_formdata.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 /// <reference path="../webidl/internal.d.ts" /> diff --git a/ext/fetch/22_body.js b/ext/fetch/22_body.js index 4291643c0..acfd06b0f 100644 --- a/ext/fetch/22_body.js +++ b/ext/fetch/22_body.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 /// <reference path="../webidl/internal.d.ts" /> diff --git a/ext/fetch/22_http_client.js b/ext/fetch/22_http_client.js index 174612288..44159de07 100644 --- a/ext/fetch/22_http_client.js +++ b/ext/fetch/22_http_client.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 /// <reference path="../webidl/internal.d.ts" /> diff --git a/ext/fetch/23_request.js b/ext/fetch/23_request.js index b13b8e687..5783cac9e 100644 --- a/ext/fetch/23_request.js +++ b/ext/fetch/23_request.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 /// <reference path="../webidl/internal.d.ts" /> diff --git a/ext/fetch/23_response.js b/ext/fetch/23_response.js index 8ac12125c..e7b205418 100644 --- a/ext/fetch/23_response.js +++ b/ext/fetch/23_response.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 /// <reference path="../webidl/internal.d.ts" /> diff --git a/ext/fetch/26_fetch.js b/ext/fetch/26_fetch.js index 228244119..c6fc9197b 100644 --- a/ext/fetch/26_fetch.js +++ b/ext/fetch/26_fetch.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 /// <reference path="../../core/lib.deno_core.d.ts" /> diff --git a/ext/fetch/Cargo.toml b/ext/fetch/Cargo.toml index 1e6839284..2a4cca0d6 100644 --- a/ext/fetch/Cargo.toml +++ b/ext/fetch/Cargo.toml @@ -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. [package] name = "deno_fetch" diff --git a/ext/fetch/fs_fetch_handler.rs b/ext/fetch/fs_fetch_handler.rs index 1a8fa3e6f..d0e6da307 100644 --- a/ext/fetch/fs_fetch_handler.rs +++ b/ext/fetch/fs_fetch_handler.rs @@ -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 crate::CancelHandle; use crate::CancelableResponseFuture; diff --git a/ext/fetch/lib.rs b/ext/fetch/lib.rs index a4cff402f..9296fb95c 100644 --- a/ext/fetch/lib.rs +++ b/ext/fetch/lib.rs @@ -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. mod fs_fetch_handler; |