remove forgotten debugger statement

This commit is contained in:
Evan You 2016-08-26 19:11:45 -04:00
parent 3fa4076d05
commit 44128f2ac7
1 changed files with 0 additions and 1 deletions

View File

@ -129,7 +129,6 @@ function arrInvoker (arr: Array<Function>): Function {
function fnInvoker (o: { fn: Function }): Function {
return function (ev) {
const single = arguments.length === 1
if (typeof o.fn !== 'function') debugger
single ? o.fn(ev) : o.fn.apply(null, arguments)
}
}