| 11 | using namespace Nan; // NOLINT(build/namespaces) |
| 12 | |
| 13 | NAN_METHOD(ReturnUtf8String) { |
| 14 | info.GetReturnValue().Set(New(*Utf8String(info[0])).ToLocalChecked()); |
| 15 | } |
| 16 | |
| 17 | NAN_METHOD(HeapString) { |
| 18 | Utf8String *s = new Utf8String(info[0]); |
nothing calls this directly
no test coverage detected