= recipients[0];
let chars = CharsPerElement - trim.length;
if (recipients.length === 1) {
return [firstRecipient];
} else {
const res = recipients.filter(i => {
if (chars - i.length > 0) {
chars -= i.length;
return true;
}
});
console.log(recipients, res);
return res.length ? res : firstRecipient + trim;
}
})();
Кстати, Svelte как к IIFE относится вообще?
никак. ему все равно что за js выражение ты отмечаешь меткой $
Обсуждают сегодня