'use strict';consturl=require('url');constprependHttp=require('prepend-http');module.exports=(input,options)=>{if(typeofinput!=='string'){thrownewTypeError(`Expected \`url\` to be of type \`string\`, got \`${typeofinput}\` instead.`);}constfinalUrl=prependHttp(input,Object.assign({https:true},options));returnurl.parse(finalUrl);};