Theme
Language
Padding
Padding Color
Show Line No
Title Bar
Shadow
Editor Width
Font Size
Shadow -X
Shadow -Y
Shadow Rad.
Padding -X
Padding -Y
Export Resolution
Great code works, but stunning code wows! Paste your snippet and turn it into a shareable masterpiece in seconds!
const retry = (fn, retries = 3, delay = 1000) =>
new Promise((resolve, reject) => {
const attempt = (count) => {
fn()
.then(resolve)
.catch((err) => {
if (count <= 1) return reject(err);
setTimeout(() => attempt(count - 1), delay);
});
};
attempt(retries);
});