UNPKG

libmodulor

Version:

A TypeScript library to create platform-agnostic applications

4 lines (3 loc) 140 B
export function truncate(value, length, ellipsis = '...') { return value.length > length ? value.slice(0, length) + ellipsis : value; }