????

Your IP : 216.73.217.111


Current Path : /proc/self/root/home/arabianr/public_html/wp-content/plugins/extendify/src/Assist/util/
Upload File :
Current File : //proc/self/root/home/arabianr/public_html/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;
	}
};