UNPKG

node-red-contrib-twilio-ivr

Version:
11 lines 307 B
module.exports = function(RED) { function PauseNode(config) { RED.nodes.createNode(this,config); var node = this; node.on('input', function(msg) { msg.payload.twiml += '<Pause length="' + config.seconds + '"/>'; node.send(msg); }); } RED.nodes.registerType("pause",PauseNode); }