Created
October 23, 2016 07:17
-
-
Save mmdsharifi/d0767d4b8855aed79f1a8fb1c30b82fb to your computer and use it in GitHub Desktop.
Mime Types in Linux,Windows,Mac,Android
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const osMimeTypes = { | |
windowsMimeTypes: [ | |
"text/scriptlet", | |
"image/x-wmf", | |
"audio/mid", | |
"audio/wav", | |
"image/x-xbitmap", | |
"application/x-msdownload", | |
"video/x-ms-wm", | |
"application/x-msterminal", | |
"application/x-msmetafile", | |
"video/x-ms-wvx", | |
"application/vnd.ms-wpl", | |
"application/x-ms-wmz", | |
"application/x-msmediaview" | |
], | |
androidMimeTypes: [ | |
"application/vnd.android.package-archive",// .apk | |
], | |
macintoshMimeTypes: [ | |
"application/mac-binhex40", | |
"audio/x-aiff", | |
"application/x-apple-diskimage" | |
], | |
linuxMimeTypes: [ | |
"application/vnd.olpc-sugar", | |
"application/x-debian-package", | |
"audio/basic", | |
"application/x-compressed", | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment