From f871edfc6b27166cddf836079648bc906ef67e17 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Sat, 5 Aug 2023 18:12:02 +0200 Subject: [PATCH] fix log debug issue --- cli/utils.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cli/utils.ts b/cli/utils.ts index 12f74b7b9b..080337d39d 100644 --- a/cli/utils.ts +++ b/cli/utils.ts @@ -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(a: T, b: T): boolean { if (a === b) return true;