(data?: any)
| 79 | } |
| 80 | |
| 81 | public write(data?: any) { |
| 82 | return this.process?.stdin?.write(iconv.encode(data, this.code)); |
| 83 | } |
| 84 | |
| 85 | public kill() { |
| 86 | if (this.process?.pid) killProcess(this.process?.pid, this.process); |
no outgoing calls
no test coverage detected