You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Disconnects an input port from an output port, or, disconnect all input ports
from an output port.
import{connect,disconnect}from"flowcode";connect(node2.o.d_out,console.log);//...disconnect(node1.o.d_out,node2.i.d_in);node1.i.d_in("Hello World!");// does not log