| 224 | static Local<Value> Encode(const char* buf, |
| 225 | size_t buflen, |
| 226 | enum Encoding encoding) { |
| 227 | assert(buflen <= node::Buffer::kMaxLength); |
| 228 | if (!buflen && encoding != BUFFER) |
| 229 | return New("").ToLocalChecked(); |
nothing calls this directly
no outgoing calls
no test coverage detected