Skip to content

Instantly share code, notes, and snippets.

@englishextra
Created May 23, 2016 05:19
Show Gist options
  • Save englishextra/b4939b3430da4b55d731201460d3decb to your computer and use it in GitHub Desktop.
Save englishextra/b4939b3430da4b55d731201460d3decb to your computer and use it in GitHub Desktop.
/*!
* truncate a text or line with ellipsis
* stackoverflow.com/questions/4700226/i-want-to-truncate-a-text-or-line-with-ellipsis-using-javascript
* gist.github.com/englishextra/b4939b3430da4b55d731201460d3decb
*/
function truncString(str, max, add) {
add = add || "\u2026";
return (typeof str === "string" && str.length > max ? str.substring(0, max) + add : str);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment