UNPKG

162 BJavaScriptView Raw
1/**
2 * 给文本加上双引号
3 *
4 * @param {string} content 文本内容
5 */
6module.exports = function processor(content) {
7 return JSON.stringify(content);
8};
\No newline at end of file