mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
Fix to use unknown type in testing/mod.ts (denoland/deno_std#73)
Original: 8221924d9a
This commit is contained in:
parent
7879a8515f
commit
7c62da8975
1 changed files with 7 additions and 7 deletions
|
@ -35,11 +35,9 @@ export function assert(expr: boolean, msg = "") {
|
|||
}
|
||||
}
|
||||
|
||||
// TODO(ry) Use unknown here for parameters types.
|
||||
// tslint:disable-next-line:no-any
|
||||
export function equal(c: any, d: any): boolean {
|
||||
export function equal(c: unknown, d: unknown): boolean {
|
||||
const seen = new Map();
|
||||
return (function compare(a, b) {
|
||||
return (function compare(a: unknown, b: unknown) {
|
||||
if (Object.is(a, b)) {
|
||||
return true;
|
||||
}
|
||||
|
@ -47,11 +45,13 @@ export function equal(c: any, d: any): boolean {
|
|||
if (seen.get(a) === b) {
|
||||
return true;
|
||||
}
|
||||
if (Object.keys(a).length !== Object.keys(b).length) {
|
||||
if (Object.keys(a || {}).length !== Object.keys(b || {}).length) {
|
||||
return false;
|
||||
}
|
||||
for (const key in { ...a, ...b }) {
|
||||
if (!compare(a[key], b[key])) {
|
||||
const merged = { ...a, ...b };
|
||||
for (const key in merged) {
|
||||
type Key = keyof typeof merged;
|
||||
if (!compare(a && a[key as Key], b && b[key as Key])) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue