(remotePath, localPath, opts, cb)
| 500 | this.write(handle, buf, off, len, position, cb); |
| 501 | } |
| 502 | fastGet(remotePath, localPath, opts, cb) { |
| 503 | if (this.server) |
| 504 | throw new Error('Client-only method called in server mode'); |
| 505 | |
| 506 | fastXfer(this, fs, remotePath, localPath, opts, cb); |
| 507 | } |
| 508 | fastPut(localPath, remotePath, opts, cb) { |
| 509 | if (this.server) |
| 510 | throw new Error('Client-only method called in server mode'); |
nothing calls this directly
no test coverage detected