* Create the file at path p with the given mode. Then, open it with the given * flag.
(p: string, flag: FileFlag, mode: number, cb: BFSCallback<File>)
| 402 | * flag. |
| 403 | */ |
| 404 | public createFile(p: string, flag: FileFlag, mode: number, cb: BFSCallback<File>): void { |
| 405 | throw new ApiError(ErrorCode.ENOTSUP); |
| 406 | } |
| 407 | public open(p: string, flag: FileFlag, mode: number, cb: BFSCallback<File>): void { |
| 408 | const mustBeFile = (e: ApiError, stats?: Stats): void => { |
| 409 | if (e) { |
no outgoing calls
no test coverage detected