@ringcentral/sdk
Version:
- [Installation](#installation) - [Getting Started](#getting-started) - [API Calls](#api-calls) - [Advanced SDK Configuration & Polyfills](#advanced-sdk-configuration--polyfills) - [Making telephony calls](#making-telephony-calls) - [Call mana
12 lines • 334 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.delay = void 0;
var delay = function (timeout) {
return new Promise(function (resolve, reject) {
setTimeout(function () {
resolve(null);
}, timeout);
});
};
exports.delay = delay;
//# sourceMappingURL=utils.js.map
;