Skip to content

Instantly share code, notes, and snippets.

@sabesansathananthan
Last active August 17, 2020 18:37
Show Gist options
  • Save sabesansathananthan/4a1561c215557f23f518eca4a83f2ad1 to your computer and use it in GitHub Desktop.
Save sabesansathananthan/4a1561c215557f23f518eca4a83f2ad1 to your computer and use it in GitHub Desktop.
Embed a blog on your React Website
export default function ShortenText(text, startingPoint, maxLength) {
return text.length > maxLength
? text.slice(startingPoint, maxLength)
: text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment