unpkg/modules/utils/getContentTypeHeader.js

4 lines
133 B
JavaScript
Raw Normal View History

2019-01-06 00:50:05 +00:00
export default function getContentTypeHeader(type) {
2018-12-17 17:38:05 +00:00
return type === 'application/javascript' ? type + '; charset=utf-8' : type;
}