Skip to content

Instantly share code, notes, and snippets.

@wesleybliss
Created December 17, 2020 15:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wesleybliss/92709563e8e0bbcbab854c20dde21525 to your computer and use it in GitHub Desktop.
Save wesleybliss/92709563e8e0bbcbab854c20dde21525 to your computer and use it in GitHub Desktop.
Snippet ellipsis #js
export const snippet = (val, len = 5) =>
(val && val.length > (len * 2))
? val.substring(0, len) + '...' + val.substring(val.length - len)
: val
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment