UNPKG

@transcend-io/consent-manager-ui

Version:
13 lines (11 loc) 286 B
import { requestIdleCallback } from './idle-callback'; /** * Helper for throwing errors without interrupting our code * * @param ex - Error to throw */ export const throwOutside = (ex: Error | DOMException | unknown): void => { requestIdleCallback(() => { throw ex; }); };