mirror of
https://github.com/denoland/deno.git
synced 2024-12-01 16:51:13 -05:00
10 lines
183 B
TypeScript
10 lines
183 B
TypeScript
|
// deno-lint-ignore-file
|
||
|
export function assertEquals<T>(
|
||
|
actual: T,
|
||
|
expected: T,
|
||
|
msg?: string,
|
||
|
options: { formatter?: (value: unknown) => string } = {},
|
||
|
) {
|
||
|
return true;
|
||
|
}
|