7 lines
209 B
JavaScript
7 lines
209 B
JavaScript
|
export const bookUrl = (country) => {
|
||
|
const urlPattern = /^https:\/\/www\.kobo\.com\/../;
|
||
|
const newPath = `https://www.kobo.com/${country}`;
|
||
|
|
||
|
return window.location.href.replace(urlPattern, newPath);
|
||
|
};
|