Skip to content

Commit 89d4ba4

Browse files
authored
chore: update copyright notice for 2025 (#6322)
1 parent 12ab98c commit 89d4ba4

File tree

1,068 files changed

+1143
-1145
lines changed

Some content is hidden

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

1,068 files changed

+1143
-1145
lines changed

_tools/check_browser_compat.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// deno-lint-ignore-file no-console
2-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
2+
// Copyright 2018-2025 the Deno authors. MIT license.
33

44
/**
55
* Running this script provides a list of suggested files that might be browser-compatible.

_tools/check_circular_package_dependencies.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// deno-lint-ignore-file no-console
2-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
2+
// Copyright 2018-2025 the Deno authors. MIT license.
33
import {
44
createGraph,
55
type ModuleGraphJson,

_tools/check_deprecation.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// deno-lint-ignore-file no-console
2-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
2+
// Copyright 2018-2025 the Deno authors. MIT license.
33
/**
44
* Checks whether all deprecated tags have a message.
55
*

_tools/check_docs.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22

33
/**
44
* This script checks that all public symbols documentation aligns with the

_tools/check_import_map.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// deno-lint-ignore-file no-console
2-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
2+
// Copyright 2018-2025 the Deno authors. MIT license.
33

44
import denoJson from "../deno.json" with { type: "json" };
55
import importMap from "../import_map.json" with { type: "json" };

_tools/check_licence.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// deno-lint-ignore-file no-console
2-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
2+
// Copyright 2018-2025 the Deno authors. MIT license.
33
import { walk } from "../fs/walk.ts";
44
import { globToRegExp } from "../path/glob_to_regexp.ts";
55

@@ -20,10 +20,10 @@ const CHECK = Deno.args.includes("--check");
2020
const FIRST_YEAR = 2018;
2121
const CURRENT_YEAR = new Date().getFullYear();
2222
const RX_COPYRIGHT = new RegExp(
23-
`// Copyright ([0-9]{4})-([0-9]{4}) the Deno authors\\. All rights reserved\\. MIT license\\.\n`,
23+
`// Copyright ([0-9]{4})-([0-9]{4}) the Deno authors\\. MIT license\\.\n`,
2424
);
2525
export const COPYRIGHT =
26-
`// Copyright ${FIRST_YEAR}-${CURRENT_YEAR} the Deno authors. All rights reserved. MIT license.`;
26+
`// Copyright ${FIRST_YEAR}-${CURRENT_YEAR} the Deno authors. MIT license.`;
2727

2828
let failed = false;
2929

_tools/check_mod_exports.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// deno-lint-ignore-file no-console
2-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
2+
// Copyright 2018-2025 the Deno authors. MIT license.
33

44
import { walk } from "../fs/walk.ts";
55
import { relative } from "../path/relative.ts";

_tools/check_unstable_deps.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// deno-lint-ignore-file no-console
33

44
/**

_tools/node_test_runner/deno_compat_hooks.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22

33
import { transform } from "sucrase";
44
import { readFile } from "node:fs/promises";

_tools/node_test_runner/register_deno_shim.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22

33
import { Deno, testDefinitions } from "@deno/shim-deno-test";
44
import { register } from "node:module";

_tools/node_test_runner/run_test.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22

33
import { test } from "node:test";
44

_tools/packages.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22

33
import { walk } from "../fs/walk.ts";
44
import { relative } from "../path/mod.ts";

_tools/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22

33
const workspaces = JSON.parse(await Deno.readTextFile("deno.json"))
44
.workspace as string[];

assert/almost_equals.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33
import { AssertionError } from "./assertion_error.ts";
44

assert/almost_equals_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import { assertAlmostEquals, AssertionError, assertThrows } from "./mod.ts";
33

44
Deno.test("assertAlmostEquals() matches values within default precision range", () => {

assert/array_includes.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33
import { equal } from "./equal.ts";
44
import { format } from "@std/internal/format";

assert/array_includes_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import { assertArrayIncludes, AssertionError, assertThrows } from "./mod.ts";
33

44
const fixture = ["deno", "iz", "luv"];

assert/assert.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33
import { AssertionError } from "./assertion_error.ts";
44

assert/assert_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import { assert, AssertionError, assertThrows } from "./mod.ts";
33

44
Deno.test("assert() throws if expr is falsy", () => {

assert/assertion_error.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33

44
/**

assert/assertion_error_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import { AssertionError, assertIsError, assertStrictEquals } from "./mod.ts";
33

44
Deno.test("AssertionError", () => {

assert/equal.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33

44
type KeyedCollection = Set<unknown> | Map<unknown, unknown>;

assert/equal_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import { assert, assertFalse, assertThrows, equal } from "./mod.ts";
33

44
Deno.test("equal() different zero", () => {

assert/equals.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33
import { equal } from "./equal.ts";
44
import { buildMessage } from "@std/internal/build-message";

assert/equals_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import { assertEquals, AssertionError, assertThrows } from "./mod.ts";
33
import {
44
bold,

assert/exists.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33
import { AssertionError } from "./assertion_error.ts";
44

assert/exists_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import {
33
assertEquals,
44
assertExists,

assert/fail.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33
import { AssertionError } from "./assertion_error.ts";
44

assert/fail_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import { AssertionError, assertThrows, fail } from "./mod.ts";
33

44
Deno.test("AssertFail", function () {

assert/false.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33
import { AssertionError } from "./assertion_error.ts";
44

assert/false_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import { assertFalse, assertThrows } from "./mod.ts";
33

44
Deno.test("assertFalse() matches with falsy values", () => {

assert/greater.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33
import { format } from "@std/internal/format";
44
import { AssertionError } from "./assertion_error.ts";

assert/greater_or_equal.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33
import { format } from "@std/internal/format";
44
import { AssertionError } from "./assertion_error.ts";

assert/greater_or_equal_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import { assertGreaterOrEqual, assertThrows } from "./mod.ts";
33

44
Deno.test("assertGreaterOrEqual() matches when actual value is greater or equal than expected value", () => {

assert/greater_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import { assertGreater, assertThrows } from "./mod.ts";
33

44
Deno.test("assertGreaterOrEqual() matches when actual value is greater than expected value", () => {

assert/instance_of.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33
import { AssertionError } from "./assertion_error.ts";
44

assert/instance_of_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import { assertInstanceOf, AssertionError, assertThrows } from "./mod.ts";
33

44
Deno.test({

assert/is_error.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33
import { AssertionError } from "./assertion_error.ts";
44
import { stripAnsiCode } from "@std/internal/styles";

assert/is_error_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import { AssertionError, assertIsError, assertThrows } from "./mod.ts";
33

44
class CustomError extends Error {}

assert/less.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33
import { format } from "@std/internal/format";
44
import { AssertionError } from "./assertion_error.ts";

assert/less_or_equal.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33
import { format } from "@std/internal/format";
44
import { AssertionError } from "./assertion_error.ts";

assert/less_or_equal_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import { assertLessOrEqual, assertThrows } from "./mod.ts";
33

44
Deno.test("assertLessOrEqual", () => {

assert/less_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import { assertLess, assertThrows } from "./mod.ts";
33

44
Deno.test("assertLess", () => {

assert/match.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33
import { AssertionError } from "./assertion_error.ts";
44

assert/match_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import { assertThrows } from "./throws.ts";
33
import { AssertionError, assertMatch } from "./mod.ts";
44

assert/mod.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33

44
/** A library of assertion functions.

assert/not_equals.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33

44
import { equal } from "./equal.ts";

assert/not_equals_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import { AssertionError, assertNotEquals, assertThrows } from "./mod.ts";
33

44
Deno.test("assertNotEquals()", () => {

assert/not_instance_of.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33
import { assertFalse } from "./false.ts";
44

assert/not_instance_of_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import { AssertionError, assertNotInstanceOf, assertThrows } from "./mod.ts";
33

44
Deno.test({

assert/not_match.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33
import { AssertionError } from "./assertion_error.ts";
44

assert/not_match_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import { AssertionError, assertNotMatch, assertThrows } from "./mod.ts";
33

44
Deno.test("assertNotMatch()", () => {

assert/not_strict_equals.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33
import { AssertionError } from "./assertion_error.ts";
44
import { format } from "@std/internal/format";

assert/not_strict_equals_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import { AssertionError, assertNotStrictEquals, assertThrows } from "./mod.ts";
33

44
Deno.test({

assert/object_match.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33
import { assertEquals } from "./equals.ts";
44

assert/object_match_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import { AssertionError, assertObjectMatch, assertThrows } from "./mod.ts";
33

44
const sym = Symbol("foo");

assert/rejects.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33
import { AssertionError } from "./assertion_error.ts";
44
import { assertIsError } from "./is_error.ts";

assert/rejects_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import { assert, assertEquals, AssertionError, assertRejects } from "./mod.ts";
33

44
Deno.test("assertRejects() with return type", async () => {

assert/strict_equals.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33
import { buildMessage } from "@std/internal/build-message";
44
import { diff } from "@std/internal/diff";

assert/strict_equals_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import { AssertionError, assertStrictEquals, assertThrows } from "./mod.ts";
33

44
Deno.test({

assert/string_includes.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33
import { AssertionError } from "./assertion_error.ts";
44

assert/string_includes_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
import {
33
assert,
44
assertEquals,

assert/throws.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
// This module is browser compatible.
33
import { assertIsError } from "./is_error.ts";
44
import { AssertionError } from "./assertion_error.ts";

0 commit comments

Comments
 (0)