increase timeout threshold because 20 is too close to frame budget @ 60fps

This commit is contained in:
Leo Horie 2016-05-19 01:21:07 -04:00
parent b4903538f3
commit 9bc6a64798

View file

@ -65,7 +65,7 @@ module.exports = new function init() {
var fn = fns[cursor++]
if (fn.length > 0) {
var timeout = 0, delay = 20, s = new Date
var timeout = 0, delay = 40, s = new Date
var isDone = false
var body = fn.toString()
var arg = (body.match(/\(([\w_$]+)/) || body.match(/([\w_$]+)\s*=>/) || []).pop()