chore(project) cleanup

This commit is contained in:
Benjamin Wegener
2023-12-25 01:52:41 +00:00
parent 785452cdea
commit bbac46c642
18 changed files with 199 additions and 67 deletions

24
lib/IO/MimeTypeMap.js Normal file
View File

@@ -0,0 +1,24 @@
export default new Map([
['text', 'text/plain'],
['html', 'text/html'],
['css', 'text/css'],
['csv', 'text/csv'],
['js', 'text/javascript'],
['gif', 'image/gif'],
['jpeg', 'image/jpeg'],
['png', 'image/png'],
['svg', 'image/svg+xml'],
['midi', 'audio/midi'],
['mp3', 'audio/mpeg'],
['oga', 'audio/ogg'],
['mp4', 'video/mp4'],
['mpeg', 'video/mpeg'],
['ogv', 'video/ogg'],
['zip', 'application/zip'],
['pdf', 'application/pdf'],
['epub', 'application/epub+zip'],
['gz', 'application/gzip'],
['bin', 'application/octet-stream'],
['json', 'application/json'],
['jsonld', 'application/ld+json'],
]);