UNPKG

beam-cli

Version:

A beautifully simple CLI for running Lighthouse audits on a statically generated (SSG) website

10 lines (9 loc) 208 B
/** * Simple async delay function * @param {number} ms - Milliseconds to wait */ export const delay = async function (ms) { return new Promise(resolve => { setTimeout(resolve, ms); }); };