summary refs log tree commit diff
path: root/resources/app/node_modules/ext-list/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'resources/app/node_modules/ext-list/index.js')
-rw-r--r--resources/app/node_modules/ext-list/index.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/resources/app/node_modules/ext-list/index.js b/resources/app/node_modules/ext-list/index.js
new file mode 100644
index 0000000..ebee2ce
--- /dev/null
+++ b/resources/app/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;
+};