diff --git a/src/record/mutation.ts b/src/record/mutation.ts index 9bd5817a..ef781b9b 100644 --- a/src/record/mutation.ts +++ b/src/record/mutation.ts @@ -93,6 +93,9 @@ class DoubleLinkedList { current.next.previous = current.previous; } } + if (n.__ln) { + delete n.__ln; + } this.length--; } }