(localPath, remotePath, opts, cb)
| 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'); |
| 511 | |
| 512 | fastXfer(fs, this, localPath, remotePath, opts, cb); |
| 513 | } |
| 514 | readFile(path, options, callback_) { |
| 515 | if (this.server) |
| 516 | throw new Error('Client-only method called in server mode'); |
nothing calls this directly
no test coverage detected