You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
602 B

const HelperFunc = {
reserverRedirection: (productCode = "") => {
const stype1 = ["int", "fam", "pre", "mq"];
const stype2 = ["ess"];
if (productCode)
productCode = productCode.toLocaleLowerCase();
if (stype1.includes(productCode))
return "https://evenements-abonnes.lemonde.fr/event_details?event_id=1012";
if (!productCode || stype2.includes(productCode)) {
return "https://boutique.lemonde.fr/80-ans-appellations-cote-rotie-condrieu-degustation-19h30-1.html";
}
return null;
}
};