(n)
| 3629 | } |
| 3630 | |
| 3631 | function roundUpToMultipleOf8(n) { |
| 3632 | return (n + 7) & ~7; // Align to 8 byte boundary. |
| 3633 | } |
| 3634 | |
| 3635 | function ReadStream(sftp, path, options) { |
| 3636 | if (options === undefined) |
no outgoing calls
no test coverage detected
searching dependent graphs…