Skip to content

Commit

Permalink
Support IE8 and lower
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed Apr 14, 2015
1 parent cb21e59 commit 413d39c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -56,7 +56,7 @@ module.exports = (function () {
}

// Wide available standard
if (typeof setTimeout === 'function') {
if ((typeof setTimeout === 'function') || (typeof setTimeout === 'object')) {
return function (cb) { setTimeout(callable(cb), 0); };
}

Expand Down

0 comments on commit 413d39c

Please sign in to comment.