Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/core/async.ts
3557 views
1
/*
2
* async.ts
3
*
4
* Copyright (C) 2020-2022 Posit Software, PBC
5
*
6
*/
7
8
export const sleep = (delay: number) => {
9
return new Promise((resolve) => {
10
setTimeout(resolve, delay);
11
});
12
};
13
14