UNPKG

@azure/communication-react

Version:

React library for building modern communication user experiences utilizing Azure Communication Services

11 lines 253 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. /** * @private */ export const delay = (delay) => { return new Promise(function (resolve) { setTimeout(resolve, delay); }); }; //# sourceMappingURL=delay.js.map