mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-11 07:35:07 +00:00
13 lines
251 B
JavaScript
13 lines
251 B
JavaScript
'use strict';
|
|
|
|
exports.prune = function(str, length) {
|
|
var result = '',
|
|
words = str.split(' ');
|
|
|
|
do {
|
|
result += words.shift() + ' ';
|
|
} while (words.length && result.length < length);
|
|
|
|
return result.replace(/ $/, words.length ? '...' : '');
|
|
};
|