summaryrefslogtreecommitdiff
path: root/tests/registry/jsr/@std/assert/0.220.1/assert_equals.ts
blob: bd58194d01652110a948b46373811f547caec5a4 (plain)
1
2
3
4
5
6
7
8
9
// deno-lint-ignore-file
export function assertEquals<T>(
  actual: T,
  expected: T,
  msg?: string,
  options: { formatter?: (value: unknown) => string } = {},
) {
  return true;
}