From 2a628c608eb072085eb4b4c09a342eba52183612 Mon Sep 17 00:00:00 2001 From: bendtherules Date: Sat, 20 Jul 2019 18:50:06 +0530 Subject: [PATCH] Remove stray console.log --- src/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 184241f..d937961 100644 --- a/src/index.ts +++ b/src/index.ts @@ -18,7 +18,6 @@ function traverse(node: FiberNode, fn: (node: FiberNode) => any) { // } fn.call(null, node); - console.log('Going through node with ', node); if (node.child !== null) { traverse(node.child, fn);