()
| 47 | }); |
| 48 | // THIS TEXT SHOULD NOT APPEAR IN BOOK |
| 49 | function randomActor() { |
| 50 | const pool = Array.from(actors); |
| 51 | return pool[Math.floor(Math.random() * pool.length)]; |
| 52 | } |
| 53 | |
| 54 | // PART TWO BEGINS BELOW. THIS TEXT SHOULD NOT APPEAR IN BOOK |
| 55 | const RpcWorkerPool = require('./rpc-worker.js'); |