mirror of
https://github.com/bendtherules/react-fiber-traverse.git
synced 2026-08-18 13:52:36 +00:00
Remove stray console.log
This commit is contained in:
@@ -18,7 +18,6 @@ function traverse(node: FiberNode, fn: (node: FiberNode) => any) {
|
|||||||
// }
|
// }
|
||||||
|
|
||||||
fn.call(null, node);
|
fn.call(null, node);
|
||||||
console.log('Going through node with ', node);
|
|
||||||
|
|
||||||
if (node.child !== null) {
|
if (node.child !== null) {
|
||||||
traverse(node.child, fn);
|
traverse(node.child, fn);
|
||||||
|
|||||||
Reference in New Issue
Block a user