We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 49703d3 + 6088c73 commit 9f3711eCopy full SHA for 9f3711e
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