cache-content-type
v2.0.0
Published
Create a full Content-Type header given a MIME type or extension and cache the result
Downloads
11,070,481
Readme
cache-content-type
The same as mime-types's contentType method, but with result cached.
Install
npm i cache-content-type
Usage
import { getType } from 'cache-content-type';
const contentType = getType('html');
assert.equal(contentType, 'text/html; charset=utf-8');