mirror of
https://github.com/tjsga/website-2018.git
synced 2025-04-21 11:40:17 -04:00
12 lines
231 B
JavaScript
12 lines
231 B
JavaScript
var db = require('mime-db');
|
|
|
|
var mapByType = {};
|
|
Object.keys(db).forEach(function(key) {
|
|
var extensions = db[key].extensions;
|
|
if (extensions) {
|
|
mapByType[key] = extensions;
|
|
}
|
|
});
|
|
|
|
console.log(JSON.stringify(mapByType));
|