chore: remove debugger

This commit is contained in:
Evan You 2019-10-10 15:37:17 -04:00
parent 497ed19277
commit 145559e170

View File

@ -4,11 +4,7 @@ const svgNS = 'http://www.w3.org/2000/svg'
export const nodeOps = {
insert: (child: Node, parent: Node, anchor?: Node) => {
if (anchor != null) {
try {
parent.insertBefore(child, anchor)
} catch (e) {
debugger
}
} else {
parent.appendChild(child)
}