summaryrefslogtreecommitdiff
path: root/std/ws
diff options
context:
space:
mode:
authorRy Dahl <ry@tinyclouds.org>2020-01-02 15:13:47 -0500
committerGitHub <noreply@github.com>2020-01-02 15:13:47 -0500
commitbfab4ed0dfa5e2034005133a257201c934bc3a80 (patch)
treecd53471ad241770d3cd9a9da6246463d92e0ebeb /std/ws
parentb0761138e5d2486c241ab8fdfa67fe2c2a0b621b (diff)
Happy new year! (#3578)
Diffstat (limited to 'std/ws')
-rw-r--r--std/ws/example_server.ts2
-rw-r--r--std/ws/mod.ts2
-rw-r--r--std/ws/sha1_test.ts2
-rw-r--r--std/ws/test.ts2
4 files changed, 4 insertions, 4 deletions
diff --git a/std/ws/example_server.ts b/std/ws/example_server.ts
index cb8ec61cd..982f72412 100644
--- a/std/ws/example_server.ts
+++ b/std/ws/example_server.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 { serve } from "../http/server.ts";
import {
acceptWebSocket,
diff --git a/std/ws/mod.ts b/std/ws/mod.ts
index 11e3ee23e..a32380efc 100644
--- a/std/ws/mod.ts
+++ b/std/ws/mod.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 { decode, encode } from "../strings/mod.ts";
import { hasOwnProperty } from "../util/has_own_property.ts";
diff --git a/std/ws/sha1_test.ts b/std/ws/sha1_test.ts
index 8ece1a7e8..43b4bc3c1 100644
--- a/std/ws/sha1_test.ts
+++ b/std/ws/sha1_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 } from "../testing/asserts.ts";
import { Sha1 } from "./sha1.ts";
diff --git a/std/ws/test.ts b/std/ws/test.ts
index 4351a391b..8ccda0988 100644
--- a/std/ws/test.ts
+++ b/std/ws/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 { BufReader } from "../io/bufio.ts";
import { assert, assertEquals, assertThrowsAsync } from "../testing/asserts.ts";
import { runIfMain, test } from "../testing/mod.ts";