@cloud-copilot/iam-collect
Version:
Collect IAM information from AWS Accounts
13 lines • 414 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.sleep = sleep;
/**
* Just chill for a bit. Used for testing.
*
* @param milliseconds the number of milliseconds to sleep
* @returns A promise that resolves after the specified time
*/
function sleep(milliseconds) {
return new Promise((resolve) => setTimeout(resolve, milliseconds));
}
//# sourceMappingURL=promise.js.map