UNPKG

183 BJavaScriptView Raw
1/**
2 * 字符截取
3 *
4 * @param {string} content 文本内容
5 */
6module.exports = function processor(content) {
7 if (!content) {
8 return content;
9 }
10 return content.trim();
11};
\No newline at end of file