UNPKG
@arnaudnyc/mout
Version:
latest (1.2.4)
1.2.4
1.2.3
1.2.2-secfix
Modular Utilities
moutjs.com
arnaudnyc/mout
@arnaudnyc/mout
/
string
/
crop.js
13 lines
(10 loc)
•
302 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
var
toString =
require
(
'../lang/toString'
);
var
truncate =
require
(
'./truncate'
);
/** * Truncate string at full words. */
function
crop
(
str, maxChars, append
) { str =
toString
(str);
return
truncate
(str, maxChars, append,
true
); }
module
.
exports
= crop;