UNPKG

utility-function-collection

Version:
4 lines (3 loc) 141 B
export const makeTextEllipsis = (text, maxRange) => { return text.length <= maxRange ? text : `${text.slice(0, maxRange - 1)}...`; };