Untitled
Anonymous
plain_text
03/21/2023 1:13 PM
972 B
23
Indexable
let activePrice = item?.optimizedPrice?.displayPrice?.formattedValue?.replace('$', '') || null;
activePrice = activePrice ? activePrice.replace(/\s/g, '') : '';
if (this.state.lang == 'fr') {
activePrice = activePrice ? activePrice.replace(',', '.') : '';
} else {
activePrice = activePrice ? activePrice.replace(',', '') : '';
}
let wasPrice = item?.optimizedPrice?.wasprice?.value?.replace('$', '') || null;
wasPrice = wasPrice ? wasPrice.replace(/\s/g, '') : '';
if (this.state.lang == 'fr') {
wasPrice = wasPrice ? wasPrice.replace(',', '.') : '';
} else {
wasPrice = wasPrice ? wasPrice.replace(',', '') : '';
}Editor is loading...