UNPKG

homebridge-tessie

Version:

Connect Homebridge to your Tessie account.

10 lines 265 B
/* * Returns a Promise that waits for the given number of milliseconds * (via setTimeout), then resolves. */ export async function wait(ms = 1000) { return new Promise((resolve) => { setTimeout(resolve, ms); }); } //# sourceMappingURL=wait.js.map