UNPKG

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