Sha256: 181dfef7103c64dc5a28acdd74d2847499cb7b5f5071ea8e8480f95f0078b2e7
Contents?: true
Size: 288 Bytes
Versions: 69
Compression:
Stored size: 288 Bytes
Contents
define(['../lang/toString', './truncate'], function (toString, truncate) { /** * Truncate string at full words. */ function crop(str, maxChars, append) { str = toString(str); return truncate(str, maxChars, append, true); } return crop; });
Version data entries
69 entries across 69 versions & 2 rubygems