zkapp-cli
Version:
CLI to create zkApps (zero-knowledge apps) for Mina Protocol
11 lines (9 loc) • 336 B
JavaScript
// Helpers extracted to improve testability.
/**
* Delays the promise resolution mimicking the `sleep`.
* @param {number} timeoutMs Timeout in milliseconds to delay the promise resolution for.
*/
/* istanbul ignore next */
export async function sleep(timeoutMs) {
await new Promise((resolve) => setTimeout(resolve, timeoutMs));
}