MCPcopy Create free account
hub / github.com/awsdocs/aws-doc-sdk-examples / wait

Function wait

javascriptv3/example_code/libs/utils/util-timers.js:4–9  ·  view source on GitHub ↗
(seconds)

Source from the content-addressed store, hash-verified

2// SPDX-License-Identifier: Apache-2.0
3
4const wait = (seconds) =>
5 new Promise((resolve) =>
6 setTimeout(() => {
7 resolve();
8 }, seconds * 1000),
9 );
10
11/**
12 * @template T

Calls

no outgoing calls

Tested by 1