FBP implementation written using node-fibers
async function copier() { let ip; while ((ip = await this.input('IN').receive()) !== null) { await this.output('OUT').send(ip); } }