diff options
Diffstat (limited to 'ext/url')
-rw-r--r-- | ext/url/00_url.js | 2 | ||||
-rw-r--r-- | ext/url/01_urlpattern.js | 2 | ||||
-rw-r--r-- | ext/url/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/url/benches/url_ops.rs | 2 | ||||
-rw-r--r-- | ext/url/internal.d.ts | 2 | ||||
-rw-r--r-- | ext/url/lib.deno_url.d.ts | 2 | ||||
-rw-r--r-- | ext/url/lib.rs | 2 | ||||
-rw-r--r-- | ext/url/urlpattern.rs | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/ext/url/00_url.js b/ext/url/00_url.js index 899a86aa0..65a45dca1 100644 --- a/ext/url/00_url.js +++ b/ext/url/00_url.js @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // @ts-check /// <reference path="../../core/internal.d.ts" /> diff --git a/ext/url/01_urlpattern.js b/ext/url/01_urlpattern.js index 2ab39f51f..f39028520 100644 --- a/ext/url/01_urlpattern.js +++ b/ext/url/01_urlpattern.js @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // @ts-check /// <reference path="../../core/internal.d.ts" /> diff --git a/ext/url/Cargo.toml b/ext/url/Cargo.toml index 32cd568eb..556ebbb54 100644 --- a/ext/url/Cargo.toml +++ b/ext/url/Cargo.toml @@ -1,4 +1,4 @@ -# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. [package] name = "deno_url" diff --git a/ext/url/benches/url_ops.rs b/ext/url/benches/url_ops.rs index b81aa99be..23b8c5c50 100644 --- a/ext/url/benches/url_ops.rs +++ b/ext/url/benches/url_ops.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. use deno_bench_util::bench_js_sync; use deno_bench_util::bench_or_profile; diff --git a/ext/url/internal.d.ts b/ext/url/internal.d.ts index 236b64e14..11bacb0e1 100644 --- a/ext/url/internal.d.ts +++ b/ext/url/internal.d.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. /// <reference no-default-lib="true" /> /// <reference lib="esnext" /> diff --git a/ext/url/lib.deno_url.d.ts b/ext/url/lib.deno_url.d.ts index 6da1c5704..a184ee4a2 100644 --- a/ext/url/lib.deno_url.d.ts +++ b/ext/url/lib.deno_url.d.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // deno-lint-ignore-file no-explicit-any no-var diff --git a/ext/url/lib.rs b/ext/url/lib.rs index bea0e2379..6869d656b 100644 --- a/ext/url/lib.rs +++ b/ext/url/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. mod urlpattern; diff --git a/ext/url/urlpattern.rs b/ext/url/urlpattern.rs index bf6507bfa..383076a4a 100644 --- a/ext/url/urlpattern.rs +++ b/ext/url/urlpattern.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. use deno_core::error::type_error; use deno_core::error::AnyError; |