(path5, filenameOrOptions, options = {})
| 14788 | }); |
| 14789 | } |
| 14790 | function fileFromPathSync(path5, filenameOrOptions, options = {}) { |
| 14791 | const stats = (0, import_fs2.statSync)(path5); |
| 14792 | return createFileFromPath(path5, stats, filenameOrOptions, options); |
| 14793 | } |
| 14794 | async function fileFromPath2(path5, filenameOrOptions, options) { |
| 14795 | const stats = await import_fs2.promises.stat(path5); |
| 14796 | return createFileFromPath(path5, stats, filenameOrOptions, options); |
nothing calls this directly
no test coverage detected