Comparing version 0.2.9 to 0.2.10
@@ -389,2 +389,4 @@ 'use strict'; | ||
insertBefore(node, before) { | ||
if (node === this) | ||
throw new Error('unable to append a not to itself'); | ||
// DO_NOT_REMOVE invalidate(this); | ||
@@ -391,0 +393,0 @@ const end = before || this._end; |
@@ -388,2 +388,4 @@ import { | ||
insertBefore(node, before) { | ||
if (node === this) | ||
throw new Error('unable to append a not to itself'); | ||
// DO_NOT_REMOVE invalidate(this); | ||
@@ -390,0 +392,0 @@ const end = before || this._end; |
{ | ||
"name": "linkedom", | ||
"version": "0.2.9", | ||
"version": "0.2.10", | ||
"description": "A triple-linked lists based DOM implementation", | ||
@@ -5,0 +5,0 @@ "main": "./cjs/index.js", |
1631146
7903