about summary refs log tree commit diff
path: root/src/platform/polyfills.web.ts
blob: 0b4a282835aacf5d48d872b3c6836a171e107b74 (plain) (blame)
1
2
3
4
5
6
7
8
// @ts-ignore no decl -prf
import * as findLast from 'array.prototype.findlast'
/// <reference lib="dom" />

findLast.shim()

// @ts-ignore whatever typescript wants to complain about here, I dont care about -prf
window.setImmediate = (cb: () => void) => setTimeout(cb, 0)