mirror of
https://github.com/zhigang1992/npm.git
synced 2026-06-16 02:34:35 +08:00
4 lines
159 B
JavaScript
4 lines
159 B
JavaScript
|
|
exports.encode = function (str) { return new Buffer(str).toString("base64") }
|
|
exports.decode = function (str) { return new Buffer(str, "base64").toString() }
|