export const getAbsoluteURL = function (url) { // Check if absolute URL if (!url.match(/^https?:\/\//)) { const div = document.createElement('div') div.innerHTML = `x` url = div.firstChild.href } return url }