| Current Path : /home/kamilrogam/komp/2018/180513/git/simpleKanban/node_modules/set-immediate-shim/ |
| Current File : /home/kamilrogam/komp/2018/180513/git/simpleKanban/node_modules/set-immediate-shim/index.js |
'use strict';
module.exports = typeof setImmediate === 'function' ? setImmediate :
function setImmediate() {
var args = [].slice.apply(arguments);
args.splice(1, 0, 0);
setTimeout.apply(null, args);
};