Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion _tools/check_browser_compat.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.

/**
* This script adds a browser-compatible declaration to files that are
Expand Down
2 changes: 1 addition & 1 deletion _tools/check_circular_package_dependencies.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// deno-lint-ignore-file no-console
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import {
createGraph,
type ModuleGraphJson,
Expand Down
2 changes: 1 addition & 1 deletion _tools/check_docs.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.

/**
* This script checks that all public symbols documentation aligns with the
Expand Down
2 changes: 1 addition & 1 deletion _tools/check_export_names.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// deno-lint-ignore-file no-console
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.

/**
* This script adds kebab case checking for export names found in each `@std`
Expand Down
2 changes: 1 addition & 1 deletion _tools/check_import_map.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// deno-lint-ignore-file no-console
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.

import importMap from "../import_map.json" with { type: "json" };
import { getPackagesDenoJsons } from "./utils.ts";
Expand Down
2 changes: 1 addition & 1 deletion _tools/check_mod_exports.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// deno-lint-ignore-file no-console
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.

import { walk } from "../fs/walk.ts";
import { relative } from "../path/relative.ts";
Expand Down
2 changes: 1 addition & 1 deletion _tools/check_unstable_deps.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// deno-lint-ignore-file no-console

/**
Expand Down
2 changes: 1 addition & 1 deletion _tools/lint_plugin.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// @ts-nocheck Deno.lint namespace does not pass type checking in Deno 1.x

/**
Expand Down
4 changes: 2 additions & 2 deletions _tools/lint_plugin_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// @ts-nocheck Deno.lint namespace does not pass type checking in Deno 1.x

import { assertEquals } from "@std/assert/equals";
Expand Down Expand Up @@ -383,7 +383,7 @@ Deno.test("deno-style-guide/copyright-notice", {
// Good
assertLintPluginDiagnostics(
`
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
`,
[],
false,
Expand Down
2 changes: 1 addition & 1 deletion _tools/node_test_runner/deno_compat_hooks.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.

import { readFile } from "node:fs/promises";
import * as path from "node:path";
Expand Down
2 changes: 1 addition & 1 deletion _tools/node_test_runner/register_deno_shim.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.

import { Deno, testDefinitions } from "@deno/shim-deno-test";
import { register } from "node:module";
Expand Down
2 changes: 1 addition & 1 deletion _tools/node_test_runner/run_test.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.

import { test } from "node:test";

Expand Down
2 changes: 1 addition & 1 deletion _tools/utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
export interface DenoJson {
name: string;
version: string;
Expand Down
2 changes: 1 addition & 1 deletion assert/almost_equals.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { AssertionError } from "./assertion_error.ts";

Expand Down
2 changes: 1 addition & 1 deletion assert/almost_equals_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import { assertAlmostEquals, AssertionError, assertThrows } from "./mod.ts";

Deno.test("assertAlmostEquals() matches values within default precision range", () => {
Expand Down
2 changes: 1 addition & 1 deletion assert/array_includes.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { equal } from "./equal.ts";
import { format } from "@std/internal/format";
Expand Down
2 changes: 1 addition & 1 deletion assert/array_includes_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import { assertArrayIncludes, AssertionError, assertThrows } from "./mod.ts";

const fixture = ["deno", "iz", "luv"];
Expand Down
2 changes: 1 addition & 1 deletion assert/assert.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { AssertionError } from "./assertion_error.ts";

Expand Down
2 changes: 1 addition & 1 deletion assert/assert_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import { assert, AssertionError, assertThrows } from "./mod.ts";

Deno.test("assert() throws if expr is falsy", () => {
Expand Down
2 changes: 1 addition & 1 deletion assert/assertion_error.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.

/**
Expand Down
2 changes: 1 addition & 1 deletion assert/assertion_error_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import { AssertionError, assertIsError, assertStrictEquals } from "./mod.ts";

Deno.test("AssertionError", () => {
Expand Down
2 changes: 1 addition & 1 deletion assert/equal.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.

type KeyedCollection = Set<unknown> | Map<unknown, unknown>;
Expand Down
2 changes: 1 addition & 1 deletion assert/equal_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import { assert, assertFalse, assertThrows, equal } from "./mod.ts";

Deno.test("equal() different zero", () => {
Expand Down
2 changes: 1 addition & 1 deletion assert/equals.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { equal } from "./equal.ts";
import { buildMessage } from "@std/internal/build-message";
Expand Down
2 changes: 1 addition & 1 deletion assert/equals_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import { assertEquals, AssertionError, assertThrows } from "./mod.ts";
import {
bold,
Expand Down
2 changes: 1 addition & 1 deletion assert/exists.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { AssertionError } from "./assertion_error.ts";

Expand Down
2 changes: 1 addition & 1 deletion assert/exists_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import {
assertEquals,
assertExists,
Expand Down
2 changes: 1 addition & 1 deletion assert/fail.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { AssertionError } from "./assertion_error.ts";

Expand Down
2 changes: 1 addition & 1 deletion assert/fail_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import { AssertionError, assertThrows, fail } from "./mod.ts";

Deno.test("AssertFail", function () {
Expand Down
2 changes: 1 addition & 1 deletion assert/false.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { AssertionError } from "./assertion_error.ts";

Expand Down
2 changes: 1 addition & 1 deletion assert/false_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import { assertFalse, assertThrows } from "./mod.ts";

Deno.test("assertFalse() matches with falsy values", () => {
Expand Down
2 changes: 1 addition & 1 deletion assert/greater.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { format } from "@std/internal/format";
import { AssertionError } from "./assertion_error.ts";
Expand Down
2 changes: 1 addition & 1 deletion assert/greater_or_equal.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { format } from "@std/internal/format";
import { AssertionError } from "./assertion_error.ts";
Expand Down
2 changes: 1 addition & 1 deletion assert/greater_or_equal_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import { assertGreaterOrEqual, assertThrows } from "./mod.ts";

Deno.test("assertGreaterOrEqual() matches when actual value is greater or equal than expected value", () => {
Expand Down
2 changes: 1 addition & 1 deletion assert/greater_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import { assertGreater, assertThrows } from "./mod.ts";

Deno.test("assertGreaterOrEqual() matches when actual value is greater than expected value", () => {
Expand Down
2 changes: 1 addition & 1 deletion assert/instance_of.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { AssertionError } from "./assertion_error.ts";

Expand Down
2 changes: 1 addition & 1 deletion assert/instance_of_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import { assertInstanceOf, AssertionError, assertThrows } from "./mod.ts";

Deno.test({
Expand Down
2 changes: 1 addition & 1 deletion assert/is_error.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { AssertionError } from "./assertion_error.ts";
import { stripAnsiCode } from "@std/internal/styles";
Expand Down
2 changes: 1 addition & 1 deletion assert/is_error_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import { AssertionError, assertIsError, assertThrows } from "./mod.ts";

class CustomError extends Error {}
Expand Down
2 changes: 1 addition & 1 deletion assert/less.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { format } from "@std/internal/format";
import { AssertionError } from "./assertion_error.ts";
Expand Down
2 changes: 1 addition & 1 deletion assert/less_or_equal.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { format } from "@std/internal/format";
import { AssertionError } from "./assertion_error.ts";
Expand Down
2 changes: 1 addition & 1 deletion assert/less_or_equal_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import { assertLessOrEqual, assertThrows } from "./mod.ts";

Deno.test("assertLessOrEqual", () => {
Expand Down
2 changes: 1 addition & 1 deletion assert/less_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import { assertLess, assertThrows } from "./mod.ts";

Deno.test("assertLess", () => {
Expand Down
2 changes: 1 addition & 1 deletion assert/match.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { AssertionError } from "./assertion_error.ts";

Expand Down
2 changes: 1 addition & 1 deletion assert/match_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import { assertThrows } from "./throws.ts";
import { AssertionError, assertMatch } from "./mod.ts";

Expand Down
2 changes: 1 addition & 1 deletion assert/mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.

/** A library of assertion functions.
Expand Down
2 changes: 1 addition & 1 deletion assert/not_equals.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.

import { equal } from "./equal.ts";
Expand Down
2 changes: 1 addition & 1 deletion assert/not_equals_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import { AssertionError, assertNotEquals, assertThrows } from "./mod.ts";

Deno.test("assertNotEquals()", () => {
Expand Down
2 changes: 1 addition & 1 deletion assert/not_instance_of.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { assertFalse } from "./false.ts";

Expand Down
2 changes: 1 addition & 1 deletion assert/not_instance_of_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import { AssertionError, assertNotInstanceOf, assertThrows } from "./mod.ts";

Deno.test({
Expand Down
2 changes: 1 addition & 1 deletion assert/not_match.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { AssertionError } from "./assertion_error.ts";

Expand Down
2 changes: 1 addition & 1 deletion assert/not_match_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import { AssertionError, assertNotMatch, assertThrows } from "./mod.ts";

Deno.test("assertNotMatch()", () => {
Expand Down
2 changes: 1 addition & 1 deletion assert/not_strict_equals.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { AssertionError } from "./assertion_error.ts";
import { format } from "@std/internal/format";
Expand Down
2 changes: 1 addition & 1 deletion assert/not_strict_equals_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import { AssertionError, assertNotStrictEquals, assertThrows } from "./mod.ts";

Deno.test({
Expand Down
2 changes: 1 addition & 1 deletion assert/object_match.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { assertEquals } from "./equals.ts";

Expand Down
2 changes: 1 addition & 1 deletion assert/object_match_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import { AssertionError, assertObjectMatch, assertThrows } from "./mod.ts";

const sym = Symbol("foo");
Expand Down
2 changes: 1 addition & 1 deletion assert/rejects.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { AssertionError } from "./assertion_error.ts";
import { assertIsError } from "./is_error.ts";
Expand Down
2 changes: 1 addition & 1 deletion assert/rejects_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import { assert, assertEquals, AssertionError, assertRejects } from "./mod.ts";

Deno.test("assertRejects() with return type", async () => {
Expand Down
2 changes: 1 addition & 1 deletion assert/strict_equals.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { buildMessage } from "@std/internal/build-message";
import { diff } from "@std/internal/diff";
Expand Down
2 changes: 1 addition & 1 deletion assert/strict_equals_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import { AssertionError, assertStrictEquals, assertThrows } from "./mod.ts";

Deno.test({
Expand Down
2 changes: 1 addition & 1 deletion assert/string_includes.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { AssertionError } from "./assertion_error.ts";

Expand Down
2 changes: 1 addition & 1 deletion assert/string_includes_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import {
assert,
assertEquals,
Expand Down
2 changes: 1 addition & 1 deletion assert/throws.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
// This module is browser compatible.
import { assertIsError } from "./is_error.ts";
import { AssertionError } from "./assertion_error.ts";
Expand Down
2 changes: 1 addition & 1 deletion assert/throws_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright 2018-2026 the Deno authors. MIT license.
import {
assert,
assertEquals,
Expand Down
Loading