From 9f197d48b06232074de3d1d3f63be27fbaac480a Mon Sep 17 00:00:00 2001 From: Revone Date: Mon, 21 Oct 2024 21:41:56 +1300 Subject: [PATCH] fix: import * as console from 'console' removed --- src/data-structures/binary-tree/binary-tree.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/data-structures/binary-tree/binary-tree.ts b/src/data-structures/binary-tree/binary-tree.ts index a1660c9..4d26642 100644 --- a/src/data-structures/binary-tree/binary-tree.ts +++ b/src/data-structures/binary-tree/binary-tree.ts @@ -27,7 +27,6 @@ import { IBinaryTree } from '../../interfaces'; import { trampoline } from '../../utils'; import { Queue } from '../queue'; import { IterableEntryBase } from '../base'; -import * as console from 'console'; /** * Represents a node in a binary tree.