file-type 16.5.4 → 21.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/core.d.ts +221 -354
- package/core.js +2599 -1165
- package/index.d.ts +89 -18
- package/index.js +154 -23
- package/package.json +96 -21
- package/readme.md +467 -270
- package/supported.js +359 -278
- package/util.js +36 -16
- package/browser.d.ts +0 -50
- package/browser.js +0 -49
package/supported.js
CHANGED
|
@@ -1,279 +1,360 @@
|
|
|
1
|
-
|
|
1
|
+
export const extensions = [
|
|
2
|
+
'jpg',
|
|
3
|
+
'png',
|
|
4
|
+
'apng',
|
|
5
|
+
'gif',
|
|
6
|
+
'webp',
|
|
7
|
+
'flif',
|
|
8
|
+
'xcf',
|
|
9
|
+
'cr2',
|
|
10
|
+
'cr3',
|
|
11
|
+
'orf',
|
|
12
|
+
'arw',
|
|
13
|
+
'dng',
|
|
14
|
+
'nef',
|
|
15
|
+
'rw2',
|
|
16
|
+
'raf',
|
|
17
|
+
'tif',
|
|
18
|
+
'bmp',
|
|
19
|
+
'icns',
|
|
20
|
+
'jxr',
|
|
21
|
+
'psd',
|
|
22
|
+
'indd',
|
|
23
|
+
'zip',
|
|
24
|
+
'tar',
|
|
25
|
+
'rar',
|
|
26
|
+
'gz',
|
|
27
|
+
'bz2',
|
|
28
|
+
'7z',
|
|
29
|
+
'dmg',
|
|
30
|
+
'mp4',
|
|
31
|
+
'mid',
|
|
32
|
+
'mkv',
|
|
33
|
+
'webm',
|
|
34
|
+
'mov',
|
|
35
|
+
'avi',
|
|
36
|
+
'mpg',
|
|
37
|
+
'mp2',
|
|
38
|
+
'mp3',
|
|
39
|
+
'm4a',
|
|
40
|
+
'oga',
|
|
41
|
+
'ogg',
|
|
42
|
+
'ogv',
|
|
43
|
+
'opus',
|
|
44
|
+
'flac',
|
|
45
|
+
'wav',
|
|
46
|
+
'spx',
|
|
47
|
+
'amr',
|
|
48
|
+
'pdf',
|
|
49
|
+
'epub',
|
|
50
|
+
'elf',
|
|
51
|
+
'macho',
|
|
52
|
+
'exe',
|
|
53
|
+
'swf',
|
|
54
|
+
'rtf',
|
|
55
|
+
'wasm',
|
|
56
|
+
'woff',
|
|
57
|
+
'woff2',
|
|
58
|
+
'eot',
|
|
59
|
+
'ttf',
|
|
60
|
+
'otf',
|
|
61
|
+
'ttc',
|
|
62
|
+
'ico',
|
|
63
|
+
'flv',
|
|
64
|
+
'ps',
|
|
65
|
+
'xz',
|
|
66
|
+
'sqlite',
|
|
67
|
+
'nes',
|
|
68
|
+
'crx',
|
|
69
|
+
'xpi',
|
|
70
|
+
'cab',
|
|
71
|
+
'deb',
|
|
72
|
+
'ar',
|
|
73
|
+
'rpm',
|
|
74
|
+
'Z',
|
|
75
|
+
'lz',
|
|
76
|
+
'cfb',
|
|
77
|
+
'mxf',
|
|
78
|
+
'mts',
|
|
79
|
+
'blend',
|
|
80
|
+
'bpg',
|
|
81
|
+
'docx',
|
|
82
|
+
'pptx',
|
|
83
|
+
'xlsx',
|
|
84
|
+
'3gp',
|
|
85
|
+
'3g2',
|
|
86
|
+
'j2c',
|
|
87
|
+
'jp2',
|
|
88
|
+
'jpm',
|
|
89
|
+
'jpx',
|
|
90
|
+
'mj2',
|
|
91
|
+
'aif',
|
|
92
|
+
'qcp',
|
|
93
|
+
'odt',
|
|
94
|
+
'ods',
|
|
95
|
+
'odp',
|
|
96
|
+
'xml',
|
|
97
|
+
'mobi',
|
|
98
|
+
'heic',
|
|
99
|
+
'cur',
|
|
100
|
+
'ktx',
|
|
101
|
+
'ape',
|
|
102
|
+
'wv',
|
|
103
|
+
'dcm',
|
|
104
|
+
'ics',
|
|
105
|
+
'glb',
|
|
106
|
+
'pcap',
|
|
107
|
+
'dsf',
|
|
108
|
+
'lnk',
|
|
109
|
+
'alias',
|
|
110
|
+
'voc',
|
|
111
|
+
'ac3',
|
|
112
|
+
'm4v',
|
|
113
|
+
'm4p',
|
|
114
|
+
'm4b',
|
|
115
|
+
'f4v',
|
|
116
|
+
'f4p',
|
|
117
|
+
'f4b',
|
|
118
|
+
'f4a',
|
|
119
|
+
'mie',
|
|
120
|
+
'asf',
|
|
121
|
+
'ogm',
|
|
122
|
+
'ogx',
|
|
123
|
+
'mpc',
|
|
124
|
+
'arrow',
|
|
125
|
+
'shp',
|
|
126
|
+
'aac',
|
|
127
|
+
'mp1',
|
|
128
|
+
'it',
|
|
129
|
+
's3m',
|
|
130
|
+
'xm',
|
|
131
|
+
'skp',
|
|
132
|
+
'avif',
|
|
133
|
+
'eps',
|
|
134
|
+
'lzh',
|
|
135
|
+
'pgp',
|
|
136
|
+
'asar',
|
|
137
|
+
'stl',
|
|
138
|
+
'chm',
|
|
139
|
+
'3mf',
|
|
140
|
+
'zst',
|
|
141
|
+
'jxl',
|
|
142
|
+
'vcf',
|
|
143
|
+
'jls',
|
|
144
|
+
'pst',
|
|
145
|
+
'dwg',
|
|
146
|
+
'parquet',
|
|
147
|
+
'class',
|
|
148
|
+
'arj',
|
|
149
|
+
'cpio',
|
|
150
|
+
'ace',
|
|
151
|
+
'avro',
|
|
152
|
+
'icc',
|
|
153
|
+
'fbx',
|
|
154
|
+
'vsdx',
|
|
155
|
+
'vtt',
|
|
156
|
+
'apk',
|
|
157
|
+
'drc',
|
|
158
|
+
'lz4',
|
|
159
|
+
'potx',
|
|
160
|
+
'xltx',
|
|
161
|
+
'dotx',
|
|
162
|
+
'xltm',
|
|
163
|
+
'ott',
|
|
164
|
+
'ots',
|
|
165
|
+
'otp',
|
|
166
|
+
'odg',
|
|
167
|
+
'otg',
|
|
168
|
+
'xlsm',
|
|
169
|
+
'docm',
|
|
170
|
+
'dotm',
|
|
171
|
+
'potm',
|
|
172
|
+
'pptm',
|
|
173
|
+
'jar',
|
|
174
|
+
'jmp',
|
|
175
|
+
'rm',
|
|
176
|
+
'sav',
|
|
177
|
+
'ppsm',
|
|
178
|
+
'ppsx',
|
|
179
|
+
'tar.gz',
|
|
180
|
+
'reg',
|
|
181
|
+
'dat',
|
|
182
|
+
];
|
|
2
183
|
|
|
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
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
'audio/vnd.wave',
|
|
181
|
-
'audio/qcelp',
|
|
182
|
-
'audio/x-ms-asf',
|
|
183
|
-
'video/x-ms-asf',
|
|
184
|
-
'application/vnd.ms-asf',
|
|
185
|
-
'video/mpeg',
|
|
186
|
-
'video/3gpp',
|
|
187
|
-
'audio/mpeg',
|
|
188
|
-
'audio/mp4', // RFC 4337
|
|
189
|
-
'audio/opus',
|
|
190
|
-
'video/ogg',
|
|
191
|
-
'audio/ogg',
|
|
192
|
-
'application/ogg',
|
|
193
|
-
'audio/x-flac',
|
|
194
|
-
'audio/ape',
|
|
195
|
-
'audio/wavpack',
|
|
196
|
-
'audio/amr',
|
|
197
|
-
'application/pdf',
|
|
198
|
-
'application/x-msdownload',
|
|
199
|
-
'application/x-shockwave-flash',
|
|
200
|
-
'application/rtf',
|
|
201
|
-
'application/wasm',
|
|
202
|
-
'font/woff',
|
|
203
|
-
'font/woff2',
|
|
204
|
-
'application/vnd.ms-fontobject',
|
|
205
|
-
'font/ttf',
|
|
206
|
-
'font/otf',
|
|
207
|
-
'image/x-icon',
|
|
208
|
-
'video/x-flv',
|
|
209
|
-
'application/postscript',
|
|
210
|
-
'application/eps',
|
|
211
|
-
'application/x-xz',
|
|
212
|
-
'application/x-sqlite3',
|
|
213
|
-
'application/x-nintendo-nes-rom',
|
|
214
|
-
'application/x-google-chrome-extension',
|
|
215
|
-
'application/vnd.ms-cab-compressed',
|
|
216
|
-
'application/x-deb',
|
|
217
|
-
'application/x-unix-archive',
|
|
218
|
-
'application/x-rpm',
|
|
219
|
-
'application/x-compress',
|
|
220
|
-
'application/x-lzip',
|
|
221
|
-
'application/x-cfb',
|
|
222
|
-
'application/x-mie',
|
|
223
|
-
'application/mxf',
|
|
224
|
-
'video/mp2t',
|
|
225
|
-
'application/x-blender',
|
|
226
|
-
'image/bpg',
|
|
227
|
-
'image/jp2',
|
|
228
|
-
'image/jpx',
|
|
229
|
-
'image/jpm',
|
|
230
|
-
'image/mj2',
|
|
231
|
-
'audio/aiff',
|
|
232
|
-
'application/xml',
|
|
233
|
-
'application/x-mobipocket-ebook',
|
|
234
|
-
'image/heif',
|
|
235
|
-
'image/heif-sequence',
|
|
236
|
-
'image/heic',
|
|
237
|
-
'image/heic-sequence',
|
|
238
|
-
'image/icns',
|
|
239
|
-
'image/ktx',
|
|
240
|
-
'application/dicom',
|
|
241
|
-
'audio/x-musepack',
|
|
242
|
-
'text/calendar',
|
|
243
|
-
'text/vcard',
|
|
244
|
-
'model/gltf-binary',
|
|
245
|
-
'application/vnd.tcpdump.pcap',
|
|
246
|
-
'audio/x-dsf', // Non-standard
|
|
247
|
-
'application/x.ms.shortcut', // Invented by us
|
|
248
|
-
'application/x.apple.alias', // Invented by us
|
|
249
|
-
'audio/x-voc',
|
|
250
|
-
'audio/vnd.dolby.dd-raw',
|
|
251
|
-
'audio/x-m4a',
|
|
252
|
-
'image/apng',
|
|
253
|
-
'image/x-olympus-orf',
|
|
254
|
-
'image/x-sony-arw',
|
|
255
|
-
'image/x-adobe-dng',
|
|
256
|
-
'image/x-nikon-nef',
|
|
257
|
-
'image/x-panasonic-rw2',
|
|
258
|
-
'image/x-fujifilm-raf',
|
|
259
|
-
'video/x-m4v',
|
|
260
|
-
'video/3gpp2',
|
|
261
|
-
'application/x-esri-shape',
|
|
262
|
-
'audio/aac',
|
|
263
|
-
'audio/x-it',
|
|
264
|
-
'audio/x-s3m',
|
|
265
|
-
'audio/x-xm',
|
|
266
|
-
'video/MP1S',
|
|
267
|
-
'video/MP2P',
|
|
268
|
-
'application/vnd.sketchup.skp',
|
|
269
|
-
'image/avif',
|
|
270
|
-
'application/x-lzh-compressed',
|
|
271
|
-
'application/pgp-encrypted',
|
|
272
|
-
'application/x-asar',
|
|
273
|
-
'model/stl',
|
|
274
|
-
'application/vnd.ms-htmlhelp',
|
|
275
|
-
'model/3mf',
|
|
276
|
-
'image/jxl',
|
|
277
|
-
'application/zstd'
|
|
278
|
-
]
|
|
279
|
-
};
|
|
184
|
+
export const mimeTypes = [
|
|
185
|
+
'image/jpeg',
|
|
186
|
+
'image/png',
|
|
187
|
+
'image/gif',
|
|
188
|
+
'image/webp',
|
|
189
|
+
'image/flif',
|
|
190
|
+
'image/x-xcf',
|
|
191
|
+
'image/x-canon-cr2',
|
|
192
|
+
'image/x-canon-cr3',
|
|
193
|
+
'image/tiff',
|
|
194
|
+
'image/bmp',
|
|
195
|
+
'image/vnd.ms-photo',
|
|
196
|
+
'image/vnd.adobe.photoshop',
|
|
197
|
+
'application/x-indesign',
|
|
198
|
+
'application/epub+zip',
|
|
199
|
+
'application/x-xpinstall',
|
|
200
|
+
'application/vnd.ms-powerpoint.slideshow.macroenabled.12',
|
|
201
|
+
'application/vnd.oasis.opendocument.text',
|
|
202
|
+
'application/vnd.oasis.opendocument.spreadsheet',
|
|
203
|
+
'application/vnd.oasis.opendocument.presentation',
|
|
204
|
+
'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
|
|
205
|
+
'application/vnd.openxmlformats-officedocument.presentationml.presentation',
|
|
206
|
+
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
|
|
207
|
+
'application/vnd.openxmlformats-officedocument.presentationml.slideshow',
|
|
208
|
+
'application/zip',
|
|
209
|
+
'application/x-tar',
|
|
210
|
+
'application/x-rar-compressed',
|
|
211
|
+
'application/gzip',
|
|
212
|
+
'application/x-bzip2',
|
|
213
|
+
'application/x-7z-compressed',
|
|
214
|
+
'application/x-apple-diskimage',
|
|
215
|
+
'application/vnd.apache.arrow.file',
|
|
216
|
+
'video/mp4',
|
|
217
|
+
'audio/midi',
|
|
218
|
+
'video/matroska',
|
|
219
|
+
'video/webm',
|
|
220
|
+
'video/quicktime',
|
|
221
|
+
'video/vnd.avi',
|
|
222
|
+
'audio/wav',
|
|
223
|
+
'audio/qcelp',
|
|
224
|
+
'audio/x-ms-asf',
|
|
225
|
+
'video/x-ms-asf',
|
|
226
|
+
'application/vnd.ms-asf',
|
|
227
|
+
'video/mpeg',
|
|
228
|
+
'video/3gpp',
|
|
229
|
+
'audio/mpeg',
|
|
230
|
+
'audio/mp4', // RFC 4337
|
|
231
|
+
'video/ogg',
|
|
232
|
+
'audio/ogg',
|
|
233
|
+
'audio/ogg; codecs=opus',
|
|
234
|
+
'application/ogg',
|
|
235
|
+
'audio/flac',
|
|
236
|
+
'audio/ape',
|
|
237
|
+
'audio/wavpack',
|
|
238
|
+
'audio/amr',
|
|
239
|
+
'application/pdf',
|
|
240
|
+
'application/x-elf',
|
|
241
|
+
'application/x-mach-binary',
|
|
242
|
+
'application/x-msdownload',
|
|
243
|
+
'application/x-shockwave-flash',
|
|
244
|
+
'application/rtf',
|
|
245
|
+
'application/wasm',
|
|
246
|
+
'font/woff',
|
|
247
|
+
'font/woff2',
|
|
248
|
+
'application/vnd.ms-fontobject',
|
|
249
|
+
'font/ttf',
|
|
250
|
+
'font/otf',
|
|
251
|
+
'font/collection',
|
|
252
|
+
'image/x-icon',
|
|
253
|
+
'video/x-flv',
|
|
254
|
+
'application/postscript',
|
|
255
|
+
'application/eps',
|
|
256
|
+
'application/x-xz',
|
|
257
|
+
'application/x-sqlite3',
|
|
258
|
+
'application/x-nintendo-nes-rom',
|
|
259
|
+
'application/x-google-chrome-extension',
|
|
260
|
+
'application/vnd.ms-cab-compressed',
|
|
261
|
+
'application/x-deb',
|
|
262
|
+
'application/x-unix-archive',
|
|
263
|
+
'application/x-rpm',
|
|
264
|
+
'application/x-compress',
|
|
265
|
+
'application/x-lzip',
|
|
266
|
+
'application/x-cfb',
|
|
267
|
+
'application/x-mie',
|
|
268
|
+
'application/mxf',
|
|
269
|
+
'video/mp2t',
|
|
270
|
+
'application/x-blender',
|
|
271
|
+
'image/bpg',
|
|
272
|
+
'image/j2c',
|
|
273
|
+
'image/jp2',
|
|
274
|
+
'image/jpx',
|
|
275
|
+
'image/jpm',
|
|
276
|
+
'image/mj2',
|
|
277
|
+
'audio/aiff',
|
|
278
|
+
'application/xml',
|
|
279
|
+
'application/x-mobipocket-ebook',
|
|
280
|
+
'image/heif',
|
|
281
|
+
'image/heif-sequence',
|
|
282
|
+
'image/heic',
|
|
283
|
+
'image/heic-sequence',
|
|
284
|
+
'image/icns',
|
|
285
|
+
'image/ktx',
|
|
286
|
+
'application/dicom',
|
|
287
|
+
'audio/x-musepack',
|
|
288
|
+
'text/calendar',
|
|
289
|
+
'text/vcard',
|
|
290
|
+
'text/vtt',
|
|
291
|
+
'model/gltf-binary',
|
|
292
|
+
'application/vnd.tcpdump.pcap',
|
|
293
|
+
'audio/x-dsf', // Non-standard
|
|
294
|
+
'application/x.ms.shortcut', // Invented by us
|
|
295
|
+
'application/x.apple.alias', // Invented by us
|
|
296
|
+
'audio/x-voc',
|
|
297
|
+
'audio/vnd.dolby.dd-raw',
|
|
298
|
+
'audio/x-m4a',
|
|
299
|
+
'image/apng',
|
|
300
|
+
'image/x-olympus-orf',
|
|
301
|
+
'image/x-sony-arw',
|
|
302
|
+
'image/x-adobe-dng',
|
|
303
|
+
'image/x-nikon-nef',
|
|
304
|
+
'image/x-panasonic-rw2',
|
|
305
|
+
'image/x-fujifilm-raf',
|
|
306
|
+
'video/x-m4v',
|
|
307
|
+
'video/3gpp2',
|
|
308
|
+
'application/x-esri-shape',
|
|
309
|
+
'audio/aac',
|
|
310
|
+
'audio/x-it',
|
|
311
|
+
'audio/x-s3m',
|
|
312
|
+
'audio/x-xm',
|
|
313
|
+
'video/MP1S',
|
|
314
|
+
'video/MP2P',
|
|
315
|
+
'application/vnd.sketchup.skp',
|
|
316
|
+
'image/avif',
|
|
317
|
+
'application/x-lzh-compressed',
|
|
318
|
+
'application/pgp-encrypted',
|
|
319
|
+
'application/x-asar',
|
|
320
|
+
'model/stl',
|
|
321
|
+
'application/vnd.ms-htmlhelp',
|
|
322
|
+
'model/3mf',
|
|
323
|
+
'image/jxl',
|
|
324
|
+
'application/zstd',
|
|
325
|
+
'image/jls',
|
|
326
|
+
'application/vnd.ms-outlook',
|
|
327
|
+
'image/vnd.dwg',
|
|
328
|
+
'application/vnd.apache.parquet',
|
|
329
|
+
'application/java-vm',
|
|
330
|
+
'application/x-arj',
|
|
331
|
+
'application/x-cpio',
|
|
332
|
+
'application/x-ace-compressed',
|
|
333
|
+
'application/avro',
|
|
334
|
+
'application/vnd.iccprofile',
|
|
335
|
+
'application/x.autodesk.fbx', // Invented by us
|
|
336
|
+
'application/vnd.visio',
|
|
337
|
+
'application/vnd.android.package-archive',
|
|
338
|
+
'application/vnd.google.draco', // Invented by us
|
|
339
|
+
'application/x-lz4', // Invented by us
|
|
340
|
+
'application/vnd.openxmlformats-officedocument.presentationml.template',
|
|
341
|
+
'application/vnd.openxmlformats-officedocument.spreadsheetml.template',
|
|
342
|
+
'application/vnd.openxmlformats-officedocument.wordprocessingml.template',
|
|
343
|
+
'application/vnd.ms-excel.template.macroenabled.12',
|
|
344
|
+
'application/vnd.oasis.opendocument.text-template',
|
|
345
|
+
'application/vnd.oasis.opendocument.spreadsheet-template',
|
|
346
|
+
'application/vnd.oasis.opendocument.presentation-template',
|
|
347
|
+
'application/vnd.oasis.opendocument.graphics',
|
|
348
|
+
'application/vnd.oasis.opendocument.graphics-template',
|
|
349
|
+
'application/vnd.ms-excel.sheet.macroenabled.12',
|
|
350
|
+
'application/vnd.ms-word.document.macroenabled.12',
|
|
351
|
+
'application/vnd.ms-word.template.macroenabled.12',
|
|
352
|
+
'application/vnd.ms-powerpoint.template.macroenabled.12',
|
|
353
|
+
'application/vnd.ms-powerpoint.presentation.macroenabled.12',
|
|
354
|
+
'application/java-archive',
|
|
355
|
+
'application/vnd.rn-realmedia',
|
|
356
|
+
'application/x-spss-sav',
|
|
357
|
+
'application/x-ms-regedit',
|
|
358
|
+
'application/x-ft-windows-registry-hive',
|
|
359
|
+
'application/x-jmp-data',
|
|
360
|
+
];
|