UNPKG

@srsl/tools

Version:

JavaScript tools for common interfaces

5 lines (4 loc) 115 B
module.exports = async function repeat(f, timeout) { await f() setTimeout(() => repeat(f, timeout), timeout) }