UNPKG

core-js

Version:
20 lines 691 B
// ie9- setTimeout & setInterval additional parameters fix var global = require('./$.global') , $def = require('./$.def') , invoke = require('./$.invoke') , partial = require('./$.partial') , navigator = global.navigator , MSIE = !!navigator && /MSIE .\./.test(navigator.userAgent); // <- dirty ie9- check var wrap = function(set){ return MSIE ? function(fn, time /*, ...args */){ return set(invoke( partial, [].slice.call(arguments, 2), typeof fn == 'function' ? fn : Function(fn) ), time); } : set; }; $def($def.G + $def.B + $def.F * MSIE, { setTimeout: wrap(global.setTimeout), setInterval: wrap(global.setInterval) });