1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
        x104   x104             x107 x107   x104 x776 x776 |
I
|
// Copyright 2018-2025 the Deno authors. MIT license. import type { Tester } from "./_types.ts"; const customEqualityTesters: Tester[] = []; export function addCustomEqualityTesters(newTesters: Tester[]) { if (!Array.isArray(newTesters)) { throw new TypeError( `customEqualityTester expects an array of Testers. But got ${typeof newTesters}`, ); } customEqualityTesters.push(...newTesters); } export function getCustomEqualityTesters() { return customEqualityTesters; } |