2020-05-22 06:53:36 +00:00
|
|
|
export const knownContentTypes = [
|
|
|
|
|
"application/json",
|
2021-01-24 17:25:39 +00:00
|
|
|
"application/ld+json",
|
2020-05-22 06:53:36 +00:00
|
|
|
"application/hal+json",
|
2021-01-24 17:25:39 +00:00
|
|
|
"application/vnd.api+json",
|
2020-05-22 06:53:36 +00:00
|
|
|
"application/xml",
|
|
|
|
|
"application/x-www-form-urlencoded",
|
2021-02-19 17:01:31 +00:00
|
|
|
"multipart/form-data",
|
2020-05-22 06:53:36 +00:00
|
|
|
"text/html",
|
|
|
|
|
"text/plain",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
export function isJSONContentType(contentType) {
|
2021-02-19 17:01:31 +00:00
|
|
|
return /\bjson\b/i.test(contentType)
|
2020-05-22 06:53:36 +00:00
|
|
|
}
|