* Opens a file and returns a file handle. * @param {string} path The file path (relative to provider root) * @param {string} flags The open flags ('r', 'r+', 'w', 'w+', 'a', 'a+') * @param {number} [mode] The file mode (for creating files) * @returns {Promise }
(path, flags, mode)
| 63 | * @returns {Promise<VirtualFileHandle>} |
| 64 | */ |
| 65 | async open(path, flags, mode) { |
| 66 | throw new ERR_METHOD_NOT_IMPLEMENTED('open'); |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Opens a file synchronously and returns a file handle. |
no outgoing calls
no test coverage detected