Skip to content

Commit e824bbc

Browse files
Takashiidobecaspervonb
authored andcommitted
change copyrights from 2019 to 2020 (denoland/deno#3733)
1 parent eac7a4d commit e824bbc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+43
-43
lines changed

encoding/testdata/cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
1+
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
22
# Dummy package info required by `cargo fetch`.
33
# Use tools/sync_third_party.py to install deps after editing this file.
44
# Deno does not build with cargo. Deno uses a build system called gn.

encoding/yaml/dumper/dumper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
/* eslint-disable max-len */
77

encoding/yaml/dumper/dumper_state.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { Schema, SchemaDefinition } from "../schema.ts";
77
import { State } from "../state.ts";

encoding/yaml/error.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { Mark } from "./mark.ts";
77

encoding/yaml/example/dump.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
22

33
import { stringify } from "../../yaml.ts";
44

encoding/yaml/example/inout.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
22

33
import { parse, stringify } from "../../yaml.ts";
44

encoding/yaml/example/parse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
22

33
import { parse } from "../../yaml.ts";
44

encoding/yaml/example/sample_document.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
22
/* eslint-disable @typescript-eslint/explicit-function-return-type */
33

44
import { parse } from "../../yaml.ts";

encoding/yaml/loader/loader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
/* eslint-disable no-conditional-assignment */
77
/* eslint-disable max-len */

encoding/yaml/loader/loader_state.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { YAMLError } from "../error.ts";
77
import { Schema, SchemaDefinition, TypeMap } from "../schema.ts";

encoding/yaml/mark.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { repeat } from "./utils.ts";
77

encoding/yaml/parse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { CbFunction, load, loadAll } from "./loader/loader.ts";
77
import { LoaderStateOptions } from "./loader/loader_state.ts";

encoding/yaml/parse_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { parse, parseAll } from "./parse.ts";
77
import { test } from "../../testing/mod.ts";

encoding/yaml/schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { YAMLError } from "./error.ts";
77
import { KindType, Type } from "./type.ts";

encoding/yaml/schema/core.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { Schema } from "../schema.ts";
77
import { json } from "./json.ts";

encoding/yaml/schema/default.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { Schema } from "../schema.ts";
77
import { binary, merge, omap, pairs, set, timestamp } from "../type/mod.ts";

encoding/yaml/schema/failsafe.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { Schema } from "../schema.ts";
77
import { map, seq, str } from "../type/mod.ts";

encoding/yaml/schema/json.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { Schema } from "../schema.ts";
77
import { bool, float, int, nil } from "../type/mod.ts";

encoding/yaml/schema/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
export { core as CORE_SCHEMA } from "./core.ts";
77
export { def as DEFAULT_SCHEMA } from "./default.ts";

encoding/yaml/state.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { SchemaDefinition } from "./schema.ts";
77
import { DEFAULT_SCHEMA } from "./schema/mod.ts";

encoding/yaml/stringify.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { dump } from "./dumper/dumper.ts";
77
import { DumperStateOptions } from "./dumper/dumper_state.ts";

encoding/yaml/stringify_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { test } from "../../testing/mod.ts";
77
import { assertEquals } from "../../testing/asserts.ts";

encoding/yaml/type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { ArrayObject, Any } from "./utils.ts";
77

encoding/yaml/type/binary.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
33
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { Type } from "../type.ts";
77
import { Any } from "../utils.ts";

encoding/yaml/type/bool.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { Type } from "../type.ts";
77
import { isBoolean } from "../utils.ts";

encoding/yaml/type/float.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { StyleVariant, Type } from "../type.ts";
77
import { isNegativeZero, Any } from "../utils.ts";

encoding/yaml/type/int.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { Type } from "../type.ts";
77
import { isNegativeZero, Any } from "../utils.ts";

encoding/yaml/type/map.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { Type } from "../type.ts";
77
import { Any } from "../utils.ts";

encoding/yaml/type/merge.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { Type } from "../type.ts";
77

encoding/yaml/type/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
export { binary } from "./binary.ts";
77
export { bool } from "./bool.ts";

encoding/yaml/type/nil.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { Type } from "../type.ts";
77

encoding/yaml/type/omap.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { Type } from "../type.ts";
77
import { Any } from "../utils.ts";

encoding/yaml/type/pairs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { Type } from "../type.ts";
77
import { Any } from "../utils.ts";

encoding/yaml/type/seq.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { Type } from "../type.ts";
77
import { Any } from "../utils.ts";

encoding/yaml/type/set.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { Type } from "../type.ts";
77
import { Any } from "../utils.ts";

encoding/yaml/type/str.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
3-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
3+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
44

55
import { Type } from "../type.ts";
66

encoding/yaml/type/timestamp.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
import { Type } from "../type.ts";
77

encoding/yaml/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Ported from js-yaml v3.13.1:
22
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
33
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
4-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
4+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
55

66
/* eslint-disable-next-line @typescript-eslint/no-explicit-any */
77
export type Any = any;

http/testdata/simple_https_server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
22
// This is an example of a https server
33
import { serveTLS } from "../server.ts";
44

http/testdata/simple_server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
22
// This is an example of a server that responds with an empty body
33
import { serve } from "../server.ts";
44

uuid/tests/isNil.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
22
import { assert } from "../../testing/asserts.ts";
33
import { test } from "../../testing/mod.ts";
44
// @ts-ignore

uuid/tests/v4/generate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
22
import { assert, assertEquals } from "../../../testing/asserts.ts";
33
import { test } from "../../../testing/mod.ts";
44
import { generate, validate } from "../../v4.ts";

uuid/tests/v4/validate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
22
import { assert } from "../../../testing/asserts.ts";
33
import { test } from "../../../testing/mod.ts";
44
import { generate, validate } from "../../v4.ts";

0 commit comments

Comments
 (0)