File size: 277 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
if (typeof clearImmediate === 'function') {
console.log(clearImmediate())
}
// We allow this.
const scheduleTimeoutA =
typeof setImmediate === 'function' ? setImmediate : setTimeout
const scheduleTimeoutB =
typeof setImmediate !== 'function' ? setTimeout : setImmediate
|