1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:37:36 +00:00

LibWeb: Implement URLSearchParams.getAll

This commit is contained in:
Luke Wilde 2021-10-26 22:06:55 +01:00 committed by Linus Groh
parent 09d1db5afd
commit fb321bad35
3 changed files with 14 additions and 1 deletions

View file

@ -35,6 +35,7 @@ public:
void append(String const& name, String const& value);
void delete_(String const& name);
String get(String const& name);
Vector<String> get_all(String const& name);
bool has(String const& name);
void set(String const& name, String const& value);