main
Last change
on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 4 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
477 bytes
|
Line | |
---|
1 | 'use strict';
|
---|
2 | var $ = require('../internals/export');
|
---|
3 | var globalThis = require('../internals/global-this');
|
---|
4 | var schedulersFix = require('../internals/schedulers-fix');
|
---|
5 |
|
---|
6 | var setTimeout = schedulersFix(globalThis.setTimeout, true);
|
---|
7 |
|
---|
8 | // Bun / IE9- setTimeout additional parameters fix
|
---|
9 | // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-settimeout
|
---|
10 | $({ global: true, bind: true, forced: globalThis.setTimeout !== setTimeout }, {
|
---|
11 | setTimeout: setTimeout
|
---|
12 | });
|
---|
Note:
See
TracBrowser
for help on using the repository browser.