UNPKG

node-red-contrib-botmaster

Version:
17 lines (11 loc) 336 B
module.exports = function(RED) { function ActionStartNode(config) { RED.nodes.createNode(this,config); this.on('input', msg => { msg.next(null, msg.payload).then( () => { this.send(msg); }); }); } RED.nodes.registerType('action-end', ActionStartNode); };