UNPKG

@dbricks/dbricks-ts

Version:

## Introduction

9 lines (8 loc) 338 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.asyncTimeout = void 0; // https://stackoverflow.com/questions/33289726/combination-of-async-function-await-settimeout async function asyncTimeout(ms) { return new Promise((resolve) => setTimeout(resolve, ms)); } exports.asyncTimeout = asyncTimeout;