DoublyLinkedList.prototype.insertAfter = function (iterator, value) {
    const prev = iterator.current;

    const node = _insertAfter(prev, value);