aboutsummaryrefslogtreecommitdiff
path: root/node_modules/cache-content-type/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/cache-content-type/README.md')
-rw-r--r--node_modules/cache-content-type/README.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/node_modules/cache-content-type/README.md b/node_modules/cache-content-type/README.md
new file mode 100644
index 00000000..605d6c44
--- /dev/null
+++ b/node_modules/cache-content-type/README.md
@@ -0,0 +1,17 @@
+## 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');
+```