MCPcopy Create free account
hub / github.com/NativeScript/android / Delete

Method Delete

test-app/runtime/src/main/cpp/URLSearchParamsImpl.cpp:117–124  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

115 }
116
117 void URLSearchParamsImpl::Delete(const v8::FunctionCallbackInfo<v8::Value> &args) {
118 URLSearchParamsImpl *ptr = GetPointer(args.This());
119 if (ptr == nullptr) {
120 return;
121 }
122 auto key = ArgConverter::ConvertToString(args[0].As<v8::String>());
123 ptr->GetURLSearchParams()->remove(key.c_str());
124 }
125
126 void URLSearchParamsImpl::Entries(const v8::FunctionCallbackInfo<v8::Value> &args) {
127 URLSearchParamsImpl *ptr = GetPointer(args.This());

Calls 3

ThisMethod · 0.80
GetURLSearchParamsMethod · 0.80
removeMethod · 0.45

Tested by

no test coverage detected