UNPKG

react-native-free-template

Version:

React Native template for a quick start with javascript

3 lines (2 loc) 110 B
export const truncateString = (str, limit = 20) => str.length > limit ? `${str.substr(0, limit)}...` : str;