summaryrefslogtreecommitdiff
path: root/std/util
diff options
context:
space:
mode:
Diffstat (limited to 'std/util')
-rw-r--r--std/util/async.ts2
-rw-r--r--std/util/async_test.ts2
-rw-r--r--std/util/deep_assign.ts2
-rw-r--r--std/util/deep_assign_test.ts2
-rw-r--r--std/util/has_own_property.ts2
5 files changed, 5 insertions, 5 deletions
diff --git a/std/util/async.ts b/std/util/async.ts
index 6e2db69dc..f6bffa07a 100644
--- a/std/util/async.ts
+++ b/std/util/async.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
// TODO(ry) It'd be better to make Deferred a class that inherits from
// Promise, rather than an interface. This is possible in ES2016, however
diff --git a/std/util/async_test.ts b/std/util/async_test.ts
index adaac1e22..f51d00138 100644
--- a/std/util/async_test.ts
+++ b/std/util/async_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { test, runIfMain } from "../testing/mod.ts";
import { assert, assertEquals, assertStrictEq } from "../testing/asserts.ts";
import { collectUint8Arrays, deferred, MuxAsyncIterator } from "./async.ts";
diff --git a/std/util/deep_assign.ts b/std/util/deep_assign.ts
index b1c9f9ac9..36777795c 100644
--- a/std/util/deep_assign.ts
+++ b/std/util/deep_assign.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
export function deepAssign(
target: Record<string, unknown>,
...sources: object[]
diff --git a/std/util/deep_assign_test.ts b/std/util/deep_assign_test.ts
index c197344f7..bc66d2179 100644
--- a/std/util/deep_assign_test.ts
+++ b/std/util/deep_assign_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { test } from "../testing/mod.ts";
import { assertEquals, assert } from "../testing/asserts.ts";
import { deepAssign } from "./deep_assign.ts";
diff --git a/std/util/has_own_property.ts b/std/util/has_own_property.ts
index 707d951d3..351905cec 100644
--- a/std/util/has_own_property.ts
+++ b/std/util/has_own_property.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
/**
* Determines whether an object has a property with the specified name.