Current File : /home/kelaby89/language-lounge.club/wp-content/plugins/extendify/src/Assist/util/util.js
export const maybeHttps = (url) => {
	try {
		const transformed = new URL(url);
		if (window.location.protocol === 'https:') {
			transformed.protocol = 'https:';
		}
		return transformed.toString();
	} catch (e) {
		return url;
	}
};
Page not found – Hello World !