mirror of
https://github.com/writeas/writefreely
synced 2025-01-10 14:52:49 +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"
|
|
}
|