* 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.
()
| 336 | * content before sending a request. |
| 337 | */ |
| 338 | get preflightFunc() { |
| 339 | return this.#preflight || null; |
| 340 | } |
| 341 | set preflightFunc(preflight) { |
| 342 | this.#preflight = preflight; |
| 343 | } |