summaryrefslogtreecommitdiff
path: root/server/src/utils/Utils.ts
blob: 454840e894614572aa28896ba7903e54d4d13f00 (plain) (blame)
1
2
3
4
5
export default class Util {
    static shorten(text: string, maxLen = 2000) {
        return text.length > maxLen ? `${text.substr(0, maxLen - 3)}...` : text;
    }
}