Skip to content

Instantly share code, notes, and snippets.

@emilisto
Created February 12, 2013 11:36
Show Gist options
  • Save emilisto/4761729 to your computer and use it in GitHub Desktop.
Save emilisto/4761729 to your computer and use it in GitHub Desktop.
function abbreviate(str, maxlen) {
maxlen = maxlen || 15;
var fullLength = str.length;
str = str.substr(0, maxlen);
if(str.length < fullLength) str += '...';
return str;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment