FAQ & Gotchas!
FAQ
Does post support get options?
Yes! post supports all the get options, except params.
Does post return anything?
Yes, it returns the same output as get (Reqor.Response|Reqor.ResponseLater)
Gotchas
Chaining/inline optioning overrides!
If you chain anything like this:
js
reqor(url).retry(6).retry(7)only the last value, 7 will be used.
If you do:
js
reqor(url).retry(7).get({retry: {number:4}})Only the last value 4 will be used
