Packages
A web application in pursuit of meaning in life.
Retired package: Complete rewrite, scratch old versions
Current section
Files
Jump to
Current section
Files
assets/node_modules/mout/src/string/crop.js
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;
});