Handle Surrogate Pairs in truncate() (#25148)

th-downstream
y.takahashi 1 year ago committed by GitHub
parent dd0d755824
commit 5c744a5d7d

@ -166,8 +166,9 @@ const makeMapStateToProps = () => {
};
const truncate = (str, num) => {
if (str.length > num) {
return str.slice(0, num) + '…';
const arr = Array.from(str);
if (arr.length > num) {
return arr.slice(0, num).join('') + '…';
} else {
return str;
}

Loading…
Cancel
Save