UNPKG

@blackglory/wait-for

Version:

A module for waiting for things to happen.

12 lines 419 B
import { fromMutationObserver } from "./utils/from-mutation-observer.js"; import { firstValueFrom } from 'rxjs'; export async function waitForDOMChanged() { const source = fromMutationObserver(document.documentElement, { attributes: true, characterData: true, childList: true, subtree: true }); await firstValueFrom(source); } //# sourceMappingURL=wait-for-dom-changed.js.map