DoublyLinkedList.prototype.erase = function (iterator) {
    const node = iterator.current;

    _remove(node);