Fixed examples in Quote.md, rough Android visuals

This commit is contained in:
Scott Nonnenberg 2018-04-09 18:31:52 -07:00
parent 6653123671
commit 21bf02c94d
No known key found for this signature in database
GPG key ID: 5F82280C35134661
15 changed files with 408 additions and 59 deletions

View file

@ -1,2 +1,10 @@
exports.isJPEG = mimeType =>
mimeType === 'image/jpeg';
exports.isVideo = mimeType =>
mimeType.startsWith('video/') && mimeType !== 'video/wmv';
exports.isImage = mimeType =>
mimeType.startsWith('image/') && mimeType !== 'image/tiff';
exports.isAudio = mimeType => mimeType.startsWith('audio/');