| 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()); |
no test coverage detected