$('.price').text((i, text) => {
const [ price, currency ] = text.split(' ');
return `${(+price).toLocaleString()} ${currency}`;
});
// или
document.querySelectorAll('.price').forEach(n => {
n.textContent = n.textContent.replace(/\d(?=(\d{3})+\D)/g, '$& ');
});
const selectCountry = (country: any): any => {
console.log(country);
return {
type: 'MY_TEST_ACTION',
}
};
const selectCountry = (country: any): any => ({ // добавилось (
type: 'MY_TEST_ACTION',
}); // добавилось )
git rebase --abort
, если процесс ребейза ещё не прерван. А дальше - доки.