src/Node.js
export class Node {
constructor ( value ) {
this.next = null;
this.sibling = null;
this.value = value;
}
}
export class Node {
constructor ( value ) {
this.next = null;
this.sibling = null;
this.value = value;
}
}