Request.functions.getUrl
Function: getUrl()
Section titled “Function: getUrl()”getUrl(
self):Url
Defined in: packages/fx-fetch/src/Request/getUrl.ts:19
Gets the URL of the request.
Parameters
Section titled “Parameters”Returns
Section titled “Returns”Example
Section titled “Example”import { Request } from 'fx-fetch';
const request = Request.make({ url: 'https://api.example.com' });const url = Request.getUrl(request);console.log(url);0.1.0