3c073f05de1ed8c3d20acff309418f8c38c0fb35
[platform/framework/web/crosswalk-tizen.git] /
1 define(['../lang/toString', './truncate'], function (toString, truncate) {
2     /**
3      * Truncate string at full words.
4      */
5      function crop(str, maxChars, append) {
6          str = toString(str);
7          return truncate(str, maxChars, append, true);
8      }
9
10      return crop;
11 });