koa-plugins/node_modules/cache-content-type
2020-03-01 17:38:34 +01:00
..
History.md First commit 2020-03-01 17:38:34 +01:00
index.js First commit 2020-03-01 17:38:34 +01:00
package.json First commit 2020-03-01 17:38:34 +01:00
README.md First commit 2020-03-01 17:38:34 +01:00

cache-content-type

The same as mime-types's contentType method, but with result cached.

Install

npm i cache-content-type

Usage

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