text-abstract
Version:
Change veryLongStrings to veryLon...
16 lines (15 loc) • 447 B
JavaScript
module.exports = function textAbstract(text, length) {
try {
if (text == null) {
return "";
};
if (text.length <= length) {
return text;
};
text = text.substring(0, length);
text = text.substring(0, text.length);
return text + "...";
} catch (e) {
console.log(e,'Make sure you provided a string and length to textAbstract.');
};
};