fn unescapeString(allocator: std.mem.Allocator, input: []const u8) error{OutOfMemory}![]u8

Parses a URI string and unescapes all %XX where XX is a valid hex number. Otherwise, verbatim copies them to the output.

Parameters

allocator: std.mem.Allocator,
input: []const u8,