fix log debug issue

This commit is contained in:
Ruben Fiszel
2023-08-05 18:12:02 +02:00
parent 3062c2b872
commit f871edfc6b
+3
View File
@@ -1,6 +1,9 @@
// Modified from: https://raw.githubusercontent.com/epoberezkin/fast-deep-equal/master/src/index.jst
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-nocheck This file is copied from a JS project, so it's not type-safe.
import { log } from "./deps.ts";
export function deepEqual<T>(a: T, b: T): boolean {
if (a === b) return true;