summaryrefslogtreecommitdiff
path: root/std/encoding
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/encoding
parentb0761138e5d2486c241ab8fdfa67fe2c2a0b621b (diff)
Happy new year! (#3578)
Diffstat (limited to 'std/encoding')
-rw-r--r--std/encoding/csv.ts2
-rw-r--r--std/encoding/hex.ts2
-rw-r--r--std/encoding/hex_test.ts2
-rw-r--r--std/encoding/toml.ts2
-rw-r--r--std/encoding/toml_test.ts2
-rw-r--r--std/encoding/yaml.ts2
-rw-r--r--std/encoding/yaml_test.ts2
7 files changed, 7 insertions, 7 deletions
diff --git a/std/encoding/csv.ts b/std/encoding/csv.ts
index 8cfa1cab9..cc486641b 100644
--- a/std/encoding/csv.ts
+++ b/std/encoding/csv.ts
@@ -1,6 +1,6 @@
// Ported from Go:
// https://github.com/golang/go/blob/go1.12.5/src/encoding/csv/
-// 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 { TextProtoReader } from "../textproto/mod.ts";
diff --git a/std/encoding/hex.ts b/std/encoding/hex.ts
index de3d76869..3aee59310 100644
--- a/std/encoding/hex.ts
+++ b/std/encoding/hex.ts
@@ -3,7 +3,7 @@
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
const hextable = new TextEncoder().encode("0123456789abcdef");
diff --git a/std/encoding/hex_test.ts b/std/encoding/hex_test.ts
index 5ea81ebdb..126aa8ac4 100644
--- a/std/encoding/hex_test.ts
+++ b/std/encoding/hex_test.ts
@@ -3,7 +3,7 @@
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-// 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 { assertEquals, assertThrows } from "../testing/asserts.ts";
diff --git a/std/encoding/toml.ts b/std/encoding/toml.ts
index 0cbd51ba0..6af31a1a1 100644
--- a/std/encoding/toml.ts
+++ b/std/encoding/toml.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 { deepAssign } from "../util/deep_assign.ts";
import { pad } from "../strings/pad.ts";
diff --git a/std/encoding/toml_test.ts b/std/encoding/toml_test.ts
index 065ab506c..da5251458 100644
--- a/std/encoding/toml_test.ts
+++ b/std/encoding/toml_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 { runIfMain, test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
import { existsSync } from "../fs/exists.ts";
diff --git a/std/encoding/yaml.ts b/std/encoding/yaml.ts
index 27c2874ec..9abe30b4b 100644
--- a/std/encoding/yaml.ts
+++ b/std/encoding/yaml.ts
@@ -1,7 +1,7 @@
// Ported from js-yaml v3.13.1:
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
export { ParseOptions, parse } from "./yaml/parse.ts";
export {
diff --git a/std/encoding/yaml_test.ts b/std/encoding/yaml_test.ts
index 40de6a94d..a5a8374cc 100644
--- a/std/encoding/yaml_test.ts
+++ b/std/encoding/yaml_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 "./yaml/parse_test.ts";
import "./yaml/stringify_test.ts";