Get the title of a URL.
npm install get-url-title
const getUrlTitle = require("get-url-title")
await getUrlTitle("https://google.com")
//=> 'Google'
await getUrlTitle("https://example.com")
//=> 'Example Domain'
Type: string
The url to get the title for.