(entry: FileSystemHandle)
| 11 | } |
| 12 | |
| 13 | function isFileSystemFileHandle(entry: FileSystemHandle): entry is FileSystemFileHandle { |
| 14 | return entry.kind === 'file'; |
| 15 | } |
| 16 | |
| 17 | function isFileSystemDirectoryHandle(entry: FileSystemHandle): entry is FileSystemDirectoryHandle { |
| 18 | return entry.kind === 'directory'; |
no outgoing calls
no test coverage detected