Skip to content

2.4.0

Compare
Choose a tag to compare
@elbywan elbywan released this 19 Jan 14:20
· 46 commits to master since this release

2.4.0 (2023-01-19)

馃彮 New feature(s)

  • Add skip argument to the retry middleware (746f8c9)
wretch().middlewares([
  retry({
    skip(url, options) {
      return options.method != "GET"
    },
  })
])