Url.functions.format
Function: format()
Section titled “Function: format()”format(
url):string
Defined in: packages/fx-fetch/src/Url/format.ts:19
Converts a Url.Url to a string.
Parameters
Section titled “Parameters”Returns
Section titled “Returns”string
Example
Section titled “Example”import { Url } from 'fx-fetch';
const url = Url.make('https://api.example.com/users');const urlString = Url.format(url); // 'https://api.example.com/users'0.1.0