Page MenuHomeMusing Studio

request.go
No OneTemporary

request.go

package impart
import (
"mime"
"net/http"
)
// ReqJSON returns whether or not the given Request is sending JSON, based on
// the Content-Type header being application/json.
func ReqJSON(r *http.Request) bool {
ct, _, _ := mime.ParseMediaType(r.Header.Get("Content-Type"))
return ct == "application/json"
}

File Metadata

Mime Type
text/plain
Expires
Mon, Jan 20, 3:58 AM (1 d, 20 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3137623

Event Timeline