Files
bot-whatsapp/packages/bot/io/methods/toJson.js
2022-11-13 14:41:25 +01:00

7 lines
157 B
JavaScript

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