unpkg/modules/utils/getContentTypeHeader.js
2019-01-05 17:14:36 -08:00

4 lines
133 B
JavaScript

export default function getContentTypeHeader(type) {
return type === 'application/javascript' ? type + '; charset=utf-8' : type;
}