-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMIME.js
30 lines (30 loc) · 1008 Bytes
/
MIME.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
* @Author: Hobai Riku
* @Date: 2017-11-20 15:22:56
* @Last Modified by: Hobai Riku
* @Last Modified time: 2017-11-20 17:27:38
*/
var arr =[
//{type:"css",mime: "text/css"},
{type:"gif",mime: "image/gif"},
//{type:"html",mime: "text/html"},
{type:"ico",mime: "image/x-icon"},
{type:"jpeg",mime: "image/jpeg"},
{type:"jpg",mime: "image/jpeg"},
//{type:"js",mime: "text/javascript"},
// {type:"json",mime: "application/json"},
// {type:"pdf",mime: "application/pdf"},
{type:"png",mime: "image/png"},
{type:"svg",mime: "image/svg"},
{type:"bm",mime: "image/bmp"},
{type:"bmp",mime: "image/bmp"},
{type:"gif",mime: "image/gif"},
// {type:"swf",mime: "application/x-shockwave-flash"},
// {type:"tiff",mime: "image/tiff"},
//{type:"txt",mime: "text/plain"},
//{type:"wav",mime: "audio/x-wav"},
//{type:"wma",mime: "audio/x-ms-wma"},
//{type:"wmv",mime: "video/x-ms-wmv"},
//{type:"xml",mime: "text/xml"}
]
module.exports=arr;