node-red/packages/node_modules/@node-red/nodes/core/common/05-junction.js

13 lines
289 B
JavaScript

module.exports = function(RED) {
"use strict";
function JunctionNode(n) {
RED.nodes.createNode(this,n);
this.on("input",function(msg, send, done) {
send(msg);
done();
});
}
RED.nodes.registerType("junction",JunctionNode);
}