You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
460 B
12 lines
460 B
'use strict';
|
|
var $ = require('../internals/export');
|
|
var global = require('../internals/global');
|
|
var schedulersFix = require('../internals/schedulers-fix');
|
|
|
|
var setTimeout = schedulersFix(global.setTimeout, true);
|
|
|
|
// Bun / IE9- setTimeout additional parameters fix
|
|
// https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-settimeout
|
|
$({ global: true, bind: true, forced: global.setTimeout !== setTimeout }, {
|
|
setTimeout: setTimeout
|
|
});
|
|
|