Promise.retry = function (fn, interval, times) { return new Promise((resolve, reject) => { fn() .then((res) => resolve(res)) .catch((e) ...
確定! 回上一頁