export function isFeatureFlagContentType()

in src/common/contentType.ts [48:54]


export function isFeatureFlagContentType(contentType: ContentType | undefined): boolean {
    const mediaType = contentType?.mediaType;
    if (!mediaType) {
        return false;
    }
    return mediaType === featureFlagContentType;
}