Skip to content

v0.5.0

Compare
Choose a tag to compare
@github-actions github-actions released this 13 Feb 17:17
· 521 commits to master since this release
ec0acdc

Minor Changes

  • #26 4d2c4d4 Thanks @gearnode! - Add a primary retry option when defining defer function.

    import { defer } from "@defer.run/client";
    
    async function makeAPICallWhoMaybeFail() {
      // do something...
    }
    
    export default defer(makeAPICallWhoMaybeFail, { retry: 5 });