diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2022-01-07 22:09:52 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-07 22:09:52 -0500 |
commit | 1fb5858009f598ce3f917f9f49c466db81f4d9b0 (patch) | |
tree | d11d37479040ee3adeaca5b828fddb8e7fd927a0 /ext/timers | |
parent | 12423e16b7df39b2bf995efd1376ba4b6ef41e02 (diff) |
chore: update copyright to 2022 (#13306)
Co-authored-by: Erfan Safari <erfanshield@outlook.com>
Diffstat (limited to 'ext/timers')
-rw-r--r-- | ext/timers/01_timers.js | 2 | ||||
-rw-r--r-- | ext/timers/02_performance.js | 2 | ||||
-rw-r--r-- | ext/timers/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/timers/lib.rs | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/ext/timers/01_timers.js b/ext/timers/01_timers.js index 6bed6ba4c..6ef2e6654 100644 --- a/ext/timers/01_timers.js +++ b/ext/timers/01_timers.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/timers/02_performance.js b/ext/timers/02_performance.js index e09a6f9c0..ce04c8dcc 100644 --- a/ext/timers/02_performance.js +++ b/ext/timers/02_performance.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/timers/Cargo.toml b/ext/timers/Cargo.toml index f3ac79447..2a355b254 100644 --- a/ext/timers/Cargo.toml +++ b/ext/timers/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_timers" diff --git a/ext/timers/lib.rs b/ext/timers/lib.rs index 7d0b9ddc1..63aabe9d4 100644 --- a/ext/timers/lib.rs +++ b/ext/timers/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. //! This module helps deno implement timers and performance APIs. |