UNPKG

wingbot

Version:

Enterprise Messaging Bot Conversation Engine

10 lines (9 loc) 293 B
/** * @param {import('../../src/Request')} req * @param {import('../../src/Responder')} res */ module.exports = (req, res) => { const { lastInteraction: l, beforeLastInteraction: b } = req.state; const c = l === res.data.lastInteractionSet ? b : l; return !!c && c !== '/*'; };