@carbon/ibm-products
Version:
Carbon for IBM Products
20 lines (18 loc) • 502 B
JavaScript
/**
* Copyright IBM Corp. 2020, 2026
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
//#region src/global/js/utils/wait.js
/**
* Copyright IBM Corp. 2024
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
function wait(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
//#endregion
exports.default = wait;