Skip to content

Commit

Permalink
remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
syumai committed May 19, 2022
1 parent f12e359 commit 831e8ff
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions request.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package workers

import (
"fmt"
"io"
"net/http"
"net/url"
Expand Down Expand Up @@ -30,7 +29,6 @@ func toHeader(headers js.Value) http.Header {
entry := entries.Index(i)
key := entry.Index(0).String()
values := entry.Index(1).String()
fmt.Printf("key: %s, values: %s\n", key, values)
for _, value := range strings.Split(values, ",") {
h.Add(key, value)
}
Expand Down

0 comments on commit 831e8ff

Please sign in to comment.