2 lines
97 B
JavaScript
2 lines
97 B
JavaScript
"use strict";exports.truncateString=function(t){return t.length>400?t.substring(0,400)+"...":t};
|