| 32 | * Custom file system which abstracts functions from node's fs and path modules. |
| 33 | */ |
| 34 | export interface VMFileSystemInterface extends VMFS, VMPath { |
| 35 | /** Implements (sep) => sep === path.sep */ |
| 36 | isSeparator(char: string): boolean; |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * Implementation of a default file system. |
no outgoing calls
no test coverage detected
searching dependent graphs…