chore: remove debugger
This commit is contained in:
parent
497ed19277
commit
145559e170
@ -4,11 +4,7 @@ const svgNS = 'http://www.w3.org/2000/svg'
|
|||||||
export const nodeOps = {
|
export const nodeOps = {
|
||||||
insert: (child: Node, parent: Node, anchor?: Node) => {
|
insert: (child: Node, parent: Node, anchor?: Node) => {
|
||||||
if (anchor != null) {
|
if (anchor != null) {
|
||||||
try {
|
parent.insertBefore(child, anchor)
|
||||||
parent.insertBefore(child, anchor)
|
|
||||||
} catch (e) {
|
|
||||||
debugger
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
parent.appendChild(child)
|
parent.appendChild(child)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user