new-style callback function (complete node)

This commit is contained in:
Kunihiko Toumura 2019-11-29 09:22:57 +09:00
parent 756a6ec5aa
commit 3c8654fa25
1 changed files with 3 additions and 2 deletions

View File

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