Last active
August 17, 2020 18:37
-
-
Save sabesansathananthan/4a1561c215557f23f518eca4a83f2ad1 to your computer and use it in GitHub Desktop.
Embed a blog on your React Website
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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