stattic-mime Get the mime type for a suffix. Made for stattic. Example of use: //Import the mime methodvar getMime = require('stattic-mime'); //Get the mime for a jpg filevar mime = getMime('jpg'); //Returns 'image/jpeg' //Get the mime for an undefined extensionvar mime = getMime('asdfg'); //Returns 'text/plain'