| 111 | } |
| 112 | |
| 113 | void XMLHttpRequest::SetResponseType(const Napi::CallbackInfo&, const Napi::Value& value) |
| 114 | { |
| 115 | m_request.ResponseType(ResponseType::StringToEnum(value.As<Napi::String>().Utf8Value())); |
| 116 | } |
| 117 | |
| 118 | Napi::Value XMLHttpRequest::GetResponseURL(const Napi::CallbackInfo&) |
| 119 | { |
nothing calls this directly
no test coverage detected