mirror of
https://github.com/writefreely/writefreely
synced 2024-11-14 05:07:07 +00:00
8 lines
136 B
Go
8 lines
136 B
Go
package writefreely
|
|
|
|
import "mime"
|
|
|
|
func IsJSON(h string) bool {
|
|
ct, _, _ := mime.ParseMediaType(h)
|
|
return ct == "application/json"
|
|
}
|