Files
30-seconds-of-code/node_modules/underscore.string/truncate.js
2019-08-20 15:52:05 +02:00

9 lines
273 B
JavaScript

var makeString = require('./helper/makeString');
module.exports = function truncate(str, length, truncateStr) {
str = makeString(str);
truncateStr = truncateStr || '...';
length = ~~length;
return str.length > length ? str.slice(0, length) + truncateStr : str;
};