UNPKG

knip

Version:

Find unused files, dependencies and exports in your TypeScript and JavaScript projects

2 lines (1 loc) 104 B
export const truncate = (text, width) => text.length > width ? `${text.slice(0, width - 3)}...` : text;