We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ea0448 commit 826edfeCopy full SHA for 826edfe
src/util/index.js src/util.jssrc/util/index.js renamed to src/util.js
@@ -1,4 +1,6 @@
1
export function deferAction(action) {
2
+ // Hidding setImmediate from Webpack to avoid inserting polyfill
3
+ const setImmediate = window.setImmediate;
4
if (typeof setImmediate !== 'undefined') {
5
setImmediate(action);
6
} else {
src/util/.babelrc
0 commit comments