From 08e0a01944300ae2b9db47975fc52ad6ed9d7ceb Mon Sep 17 00:00:00 2001 From: Dylan Vann Date: Fri, 12 Jul 2019 10:19:28 -0400 Subject: [PATCH] fix: Fix coverage report. --- src/helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers.js b/src/helpers.js index 4e28b927..ab43e72b 100644 --- a/src/helpers.js +++ b/src/helpers.js @@ -8,8 +8,8 @@ function setImmediatePolyfill(fn) { return globalObj.setTimeout(fn, 0) } -// istanbul ignore next const clearTimeoutFn = globalObj.clearTimeout +// istanbul ignore next const setImmediateFn = globalObj.setImmediate || setImmediatePolyfill const setTimeoutFn = globalObj.setTimeout