1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 22:48:11 +00:00

LibWeb: Use the URL encoder from AK instead of rolling a custom one

This commit is contained in:
Andreas Kling 2020-06-15 17:55:27 +02:00
parent d883607e8f
commit 84f8c91a6f
3 changed files with 6 additions and 23 deletions

View file

@ -36,8 +36,7 @@ struct URLQueryParam {
String value;
};
String url_encode(const StringView&);
String url_encode(const Vector<URLQueryParam>&);
String urlencode(const Vector<URLQueryParam>&);
}