Guest User

Untitled

a guest
Jan 10th, 2018
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. (function() {
  2.  
  3. var extToMimes = {
  4. 'img': 'image/jpeg',
  5. 'png': 'image/png',
  6. ...
  7. }
  8.  
  9. window.getMimeByExt = function(ext) {
  10. if (extToMimes.hasOwnProperty(ext)) {
  11. return extToMimes[ext];
  12. }
  13. return false;
  14. }
  15.  
  16. })();
  17.  
  18. var mime = $('input[type="file"]').prop('files')[0].file;
  19.  
  20. <script src="https://wzrd.in/standalone/mime@latest"></script>
  21. <script>
  22. mime.getType("something.pdf"); // etc.
  23. <script>
Add Comment
Please, Sign In to add comment