1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
x103 x103 x766 x766 x103 x106 x106 x106 x106 x106 |
// Copyright 2018-2025 the Deno authors. MIT license.
import type { Matchers } from "./_types.ts";
let extendMatchers = {};
export function getExtendMatchers() {
return extendMatchers;
}
export function setExtendMatchers(newExtendMatchers: Matchers) {
extendMatchers = {
...extendMatchers,
...newExtendMatchers,
};
}
|