* Send a message to the parent.
(message: ChildMessage)
| 206 | * Send a message to the parent. |
| 207 | */ |
| 208 | private send(message: ChildMessage): void { |
| 209 | if (!process.send) { |
| 210 | throw new Error("not spawned with IPC") |
| 211 | } |
| 212 | process.send(message) |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | /** |
no outgoing calls
no test coverage detected