Convert an HTTP URL to an HTTPS URL.
Usage:
import { convertHttpToHttps } from "mazey";const ret = convertHttpToHttps("http://example.com");console.log(ret); Copy
import { convertHttpToHttps } from "mazey";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: