koboprice/lib/bookUrl.js
2024-07-15 20:52:41 +03:00

9 lines
267 B
JavaScript

export const bookUrl = (country) => {
const urlPattern = /^https:\/\/www\.kobo\.com\/../;
const newPath = `https://www.kobo.com/${country}`;
const url = window.location.href.replace(urlPattern, newPath);
l("url for country", country, url);
return url;
};