You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The latest code in git will allow snooping on requests more properly, like this:
constloggedFactory=newApiFactory({extras: {mutateRequest: async(req)=>{constbody=awaitreq.text();console.log('-->',body);returnnewRequest(req,{ body });},},})constec2=loggedFactory.makeNew(EC2);