latte_web3
Version:
32 lines (31 loc) • 953 B
JavaScript
(function(define) { 'use strict';
define("latte_web/mines", ["require", "exports", "module", "window"],
function(require, exports, module, window) {
(function() {
var mines = {
".htm": "text/html",
".html":"text/html",
".ico" : "image/x-icon",
".css" : "text/css",
".gif" : "image/gif",
".jpeg": "image/jpeg",
".jpg" : "image/jpeg",
".js" : "text/javascript",
".json": "application/json",
".pdf" : "application/pdf",
".png" : "image/png",
".svg" : "image/svg+xml",
".swf" : "application/x-shockwave-flash",
".tiff": "image/tiff",
".txt" : "text/plain",
".wav" : "audio/x-wav",
".wma" : "audio/x-ms-wma",
".wmv" : "video/x-ms-wmv",
".xml" : "text/xml"
};
this.getFileType = function(type) {
return mines[type];
}
}).call(module.exports);
});
})(typeof define === "function"? define: function(name, reqs, factory) { factory(require, exports, module); });