UNPKG

wxpay-slim

Version:

微信支付轻量包,使用 ES2017 async functions 来操作微信支付,接口名称与官方接口对应,轻松上手,文档齐全

13 lines (10 loc) 300 B
const xml2js = require('xml2js'); exports.build = function (json) { const builder = new xml2js.Builder(); const xml = builder.buildObject(json); return xml; }; exports.parsePromise = function (xml) { const parser = new xml2js.Parser(); return parser.parseStringPromise(xml); };