(name: string)
| 11 | * will not be created. |
| 12 | */ |
| 13 | export const getTempFilePath = (name: string) => |
| 14 | join(tmpdir(), `${name}-${randomBytes(8).toString('hex')}`) |
| 15 | |
| 16 | /** |
| 17 | * Tail the file and call the callback on every line. |
no test coverage detected