Skip to content

Instantly share code, notes, and snippets.

@thomasbrueggemann
Created February 19, 2017 13:23
Show Gist options
  • Save thomasbrueggemann/b4dc876ab77e4bb121a023e8dcce076d to your computer and use it in GitHub Desktop.
Save thomasbrueggemann/b4dc876ab77e4bb121a023e8dcce076d to your computer and use it in GitHub Desktop.
String.prototype.trunc = String.prototype.trunc || function(n){
return (this.length > n) ? this.substr(0, n-1) + '…' : this;
};
console.log("".trunc(50));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment