Files
bot-whatsapp/packages/io/methods/toJson.js
Leifer Mendez 0a9e14c460 toJson
2022-11-02 21:10:18 +01:00

7 lines
157 B
JavaScript

const toJson = (inCtx) => () => {
const lastCtx = inCtx.hasOwnProperty('ctx') ? inCtx.ctx : inCtx
return lastCtx.json
}
module.exports = { toJson }