import createRBTree from "functional-red-black-tree"; console.log("#############"); console.log("## RB Tree ##"); console.log("#############"); // just a small experiment console.log( createRBTree() .insert(1) .insert(1) .insert(2) );