* This function is called to fetch content from HTTP and * HTTPS URLs and is platform specific (e.g. nodejs vs * browsers). * * This is by default the currently registered global getUrl * function, which can be changed using [[registerGetUrl]]. * If this has been
()
| 382 | * configurege a proxy or other agent. |
| 383 | */ |
| 384 | get getUrlFunc() { |
| 385 | return this.#getUrlFunc || defaultGetUrlFunc; |
| 386 | } |
| 387 | set getUrlFunc(value) { |
| 388 | this.#getUrlFunc = value; |
| 389 | } |