Add setImmediate polyfill to web, fixing dropdown items

This commit is contained in:
Paul Frazee 2023-02-23 16:42:52 -06:00
parent 4182edfd7e
commit b4f2a6979a
5 changed files with 6 additions and 2 deletions

View file

@ -1 +0,0 @@
import '@zxing/text-encoding' // TextEncoder / TextDecoder

View file

@ -1,2 +1 @@
// do nothing
export {}

View file

@ -0,0 +1,4 @@
/// <reference lib="dom" />
// @ts-ignore whatever typescript wants to complain about here, I dont care about -prf
window.setImmediate = (cb: () => void) => setTimeout(cb, 0)