1 2 3 4 5 6
export default function (url: string) { if (!/^https?:\/\//.test(url)) { url = "https://" + url; } return url; }