Convert an HTTP URL to an HTTPS URL.
Usage:
const ret = convertHttpToHttps('http://example.com');console.log(ret); Copy
const ret = convertHttpToHttps('http://example.com');console.log(ret);
Output:
https://example.com Copy
https://example.com
The HTTP URL to convert to HTTPS.
The HTTPS URL.
Convert an HTTP URL to an HTTPS URL.
Usage:
Output: