UNPKG

snappy-utils

Version:

A lightweight and efficient JavaScript utility library packed with commonly used helper functions like capitalize, debounce, deepClone, flattenArray, isPrime, and more. Ideal for developers who want a simple yet powerful toolkit to streamline everyday cod

8 lines (7 loc) 168 B
function truncateString(str, num) { if (str.length <= num) { return str; } return str.slice(0, num) + '...'; } module.exports = truncateString;