main
js 7 lines 115 Bytes
Raw
1 'use strict';
2
3 export function patchSetImmediate() {
4 global.setImmediate = cb => {
5 setTimeout(cb, 0);
6 };
7 }