Last active
August 13, 2020 00:43
-
-
Save angeldelacruzdev/23b6bff7f02fc8e31acefc05e54d085b to your computer and use it in GitHub Desktop.
Short String
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 StrShortString = (str) =>{ | |
return str.length > 25 ? str.substring(0, 50) + "..." : str; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
return str.length > 25 ? str.substring(0, 50) + "..." : str;
Para cortar un texto muy largo al momento de mostrarlo.