Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow sending headers with empty values,
while also allowing the user to remove default headers set by libcurl. See https://curl.se/libcurl/c/CURLOPT_HTTPHEADER.html for more details. passing " headers: {'h1' => 'v1', 'h2' => '', 'h3;' => ''} " corresponds to these curl options: " -H 'h1: v1' -H 'h2:' -H 'h3;' " Enhances typhoeus#132 Fixes typhoeus/typhoeus#706
- Loading branch information