We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
function Promise.retry(callback, times, ...) local args, length = {...}, select("#", ...) return callback(...):catch(function(...) if times > 0 then return retry(callback, times - 1, unpack(args, 1, length)) else return Promise.reject(...) end end) end
The text was updated successfully, but these errors were encountered:
e5843cf
No branches or pull requests
The text was updated successfully, but these errors were encountered: