api-client/helpers/utils/contenttypes.js

16 lines
347 B
JavaScript
Raw Normal View History

export const knownContentTypes = [
"application/json",
"application/ld+json",
"application/hal+json",
"application/vnd.api+json",
"application/xml",
"application/x-www-form-urlencoded",
"multipart/form-data",
"text/html",
"text/plain",
]
export function isJSONContentType(contentType) {
return /\bjson\b/i.test(contentType)
}