Created
February 17, 2020 20:06
-
-
Save bobmacneal/13607bc888becf8c9c76baeccfc2add5 to your computer and use it in GitHub Desktop.
This file contains 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 const truncate = (phrase, maxLength) => { | |
if (phrase.length > maxLength) { | |
return `${phrase.substring(0, maxLength - 4)} ...` | |
} else { | |
return phrase | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment