| 27 | } |
| 28 | |
| 29 | Value HasOwnPropertyWithCppStyleString(const CallbackInfo& info) { |
| 30 | Object obj = info[0].UnsafeAs<Object>(); |
| 31 | String jsKey = info[1].As<String>(); |
| 32 | return Boolean::New( |
| 33 | info.Env(), MaybeUnwrapOr(obj.HasOwnProperty(jsKey.Utf8Value()), false)); |
| 34 | } |
nothing calls this directly
no test coverage detected