%PDF- %PDF-
| Direktori : /var/www/projetos/stb.ind.br/wp-content/themes/stb/node_modules/underscore.string/ |
| Current File : /var/www/projetos/stb.ind.br/wp-content/themes/stb/node_modules/underscore.string/truncate.js |
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;
};