mirror of
https://github.com/writeas/writefreely
synced 2025-01-07 13:31:43 +01:00
9 lines
136 B
Go
9 lines
136 B
Go
package writefreely
|
|
|
|
import "mime"
|
|
|
|
func IsJSON(h string) bool {
|
|
ct, _, _ := mime.ParseMediaType(h)
|
|
return ct == "application/json"
|
|
}
|