Skip to content

Instantly share code, notes, and snippets.

@andreasvirkus
Created September 29, 2017 07:40
Show Gist options
  • Save andreasvirkus/bb7f2aa45cd844e5e4b7a66b979293d1 to your computer and use it in GitHub Desktop.
Save andreasvirkus/bb7f2aa45cd844e5e4b7a66b979293d1 to your computer and use it in GitHub Desktop.
Truncate strings
String.prototype.trunc = String.prototype.trunc || function(n) {
return (this.length > n) ? this.substr(0, n-1) + '…' : this;
};
// Usage
let s = 'not very long';
s.trunc(25); //=> not very long
s.trunc(5); //=> not ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment