UNPKG

add-ellipsis

Version:

Cut off a string to a specified length and add an ellipsis

9 lines (7 loc) 191 B
'use strict'; module.exports = function (string, len) { if (typeof string !== 'string') { throw new TypeError('Expected a string to use'); } return string.substring(0, len) + '…'; };