moonstream/frontend/src/core/utils/text.js

8 wiersze
156 B
JavaScript
Czysty Zwykły widok Historia

2021-07-13 11:35:46 +00:00
export const shorten = (string, length = 80) => {
if (string.length <= length) {
return string;
}
return string.substring(0, length) + "...";
};