Skip to content

Commit 44128f2

Browse files
committed
remove forgotten debugger statement
1 parent 3fa4076 commit 44128f2

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/core/vdom/helpers.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ function arrInvoker (arr: Array<Function>): Function {
129129
function fnInvoker (o: { fn: Function }): Function {
130130
return function (ev) {
131131
const single = arguments.length === 1
132-
if (typeof o.fn !== 'function') debugger
133132
single ? o.fn(ev) : o.fn.apply(null, arguments)
134133
}
135134
}

0 commit comments

Comments
 (0)