koboprice/lib/bookUrl.js

7 lines
209 B
JavaScript
Raw Normal View History

2024-07-14 22:36:08 +03:00
export const bookUrl = (country) => {
const urlPattern = /^https:\/\/www\.kobo\.com\/../;
const newPath = `https://www.kobo.com/${country}`;
return window.location.href.replace(urlPattern, newPath);
};