| 16 | ]) |
| 17 | |
| 18 | export interface AtomicWriteOptions { |
| 19 | readonly platform?: NodeJS.Platform |
| 20 | readonly fsyncSync?: typeof FsyncSync |
| 21 | } |
| 22 | |
| 23 | function isToleratedFsyncError(error: unknown): boolean { |
| 24 | if (!(error instanceof Error)) return false |
nothing calls this directly
no outgoing calls
no test coverage detected