UNPKG

152 BJavaScriptView Raw
1/**
2 * URL 编码
3 *
4 * @param {string} content 文本内容
5 */
6module.exports = function processor(content) {
7 return encodeURIComponent(content);
8};
\No newline at end of file