File "util.js"
Full Path: /home/fresvfqn/waterdamagerestorationandrepairsmithtown.com/wp-content/plugins/extendify/src/Assist/util/util.js
File size: 235 bytes
MIME-type: text/plain
Charset: utf-8
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;
}
};