Skip to content

Instantly share code, notes, and snippets.

@codeepic
Created July 11, 2023 11:47
Show Gist options
  • Save codeepic/57c0442bf3e8a1b6a861d615347a3f30 to your computer and use it in GitHub Desktop.
Save codeepic/57c0442bf3e8a1b6a861d615347a3f30 to your computer and use it in GitHub Desktop.
Sleep
const sleep = (ms, data, useReject) => {
return new Promise((resolve, reject) =>
setTimeout(() => {
if (useReject) {
reject(data);
}
return resolve(data);
}, ms)
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment