(size)
| 2091 | } |
| 2092 | |
| 2093 | function tryCreateBuffer(size) { |
| 2094 | try { |
| 2095 | return Buffer.allocUnsafe(size); |
| 2096 | } catch (ex) { |
| 2097 | return ex; |
| 2098 | } |
| 2099 | } |
| 2100 | |
| 2101 | function read_(self, handle, buf, off, len, position, cb, req_) { |
| 2102 | const maxDataLen = self._maxReadLen; |
no outgoing calls
no test coverage detected
searching dependent graphs…