[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[TXT]History.md2018-07-18 14:15 540  
[TXT]README.md2018-07-11 05:15 341 0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]index.js2018-07-11 05:03 317  
[   ]package.json2023-06-08 14:14 1.9K 
## cache-content-type

The same as [mime-types](https://github.com/jshttp/mime-types)'s contentType method, but with result cached.

### Install

```bash
npm i cache-content-type
```

### Usage

```js
const getType = require('cache-content-type');
const contentType = getType('html');
assert(contentType === 'text/html; charset=utf-8');
```