* This function is called prior to each request, for example * during a redirection or retry in case of server throttling. * * This offers an opportunity to populate headers or update * content before sending a request.
()
| 332 | * content before sending a request. |
| 333 | */ |
| 334 | get preflightFunc() { |
| 335 | return this.#preflight || null; |
| 336 | } |
| 337 | set preflightFunc(preflight) { |
| 338 | this.#preflight = preflight; |
| 339 | } |