/
St.Anton
/
marvel_starter
Обзор
Документация
Войти
/
St.Anton
/
marvel_starter
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/utils/utils.js
13 строк
416 B
St.Anton
Adds CharInfo component and CharList with pagination
07 дек 2021, 18:03
07 дек 2021, 18:03
74ffe27
Код
Авторство
О чём код?
const letterCut = (text, letterLimit) => { const descriptionMod = text ? text : "There is no description for this character."; let slicedDescription = descriptionMod.slice(0, letterLimit); if (slicedDescription.length < descriptionMod.length) { return (slicedDescription = `${slicedDescription}...`); } else { return slicedDescription; } }; export { letterCut };