Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export default async (page, no_of_xhr_request = 1) => {
const p = new pendingXHR(page)
await Promise.all([
pWaitFor(() => p.finishedWithSuccessXhrs.size >= no_of_xhr_request),
pendingXHR.waitForAllXhrFinished(),
])
}