aboutsummaryrefslogtreecommitdiff
path: root/node_modules/ext-list/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/ext-list/index.js')
-rw-r--r--node_modules/ext-list/index.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/node_modules/ext-list/index.js b/node_modules/ext-list/index.js
new file mode 100644
index 0000000..ebee2ce
--- /dev/null
+++ b/node_modules/ext-list/index.js
@@ -0,0 +1,18 @@
+'use strict';
+var mimeDb = require('mime-db');
+
+module.exports = function () {
+ var ret = {};
+
+ Object.keys(mimeDb).forEach(function (x) {
+ var val = mimeDb[x];
+
+ if (val.extensions && val.extensions.length > 0) {
+ val.extensions.forEach(function (y) {
+ ret[y] = x;
+ });
+ }
+ });
+
+ return ret;
+};