Lightweight retry for JavaScript and fetch requests with exponential delay. Usage: https://github.com/mebsly/retry

```js
const retry = require('@mebsly/retry');

// Retry a function
retry(() => someFunction());

// Retry with custom options
retry(() => someFunction(), {
    retries: 5,
    delay: 1000,
    maxDelay: 5000,
    shouldRetry: (err) => err.code === 'ECONNRESET'
});
```