UNPKG

inline-assets

Version:

Inline External Assets of HTML/CSS Files

9 lines (7 loc) 273 B
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; };