Remove mootools as dependency.

This commit is contained in:
Paulo Veiga
2021-12-14 17:06:09 +00:00
parent 25b86f3cff
commit 75a153d1d5
47 changed files with 255 additions and 1107 deletions

View File

@ -33,7 +33,7 @@ describe('Free Test Suite', () => {
function branchCollision(treeSet, node, heightById) {
const children = treeSet.getChildren(node);
const childOfRootNode = treeSet._rootNodes.contains(node);
const childOfRootNode = treeSet._rootNodes.includes(node);
children.forEach(((child) => {
let siblings = treeSet.getSiblings(child);