Skip to content

Instantly share code, notes, and snippets.

@olvap
Last active May 23, 2018 19:18
Show Gist options
  • Save olvap/b5873390b60459f7377fefdfb637b6fe to your computer and use it in GitHub Desktop.
Save olvap/b5873390b60459f7377fefdfb637b6fe to your computer and use it in GitHub Desktop.
export const elipsisTetx(text) =>
text.length < 35 ? text : `${text.substring(0, 35)}...`
require elipsisText from './elipsis_text'
elipsisTetx('un texto')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment