new-style callback function (catch node)

This commit is contained in:
Kunihiko Toumura 2019-11-29 09:30:12 +09:00
parent 3c8654fa25
commit 0d0bf62fc4
1 changed files with 3 additions and 2 deletions

View File

@ -22,8 +22,9 @@ module.exports = function(RED) {
var node = this;
this.scope = n.scope;
this.uncaught = n.uncaught;
this.on("input",function(msg) {
this.send(msg);
this.on("input",function(msg, send, done) {
send(msg);
done();
});
}