summaryrefslogtreecommitdiff
path: root/lib/utils.js
diff options
context:
space:
mode:
authorLluisArevalo2017-05-08 11:00:45 +0200
committerLluisArevalo2017-05-08 11:00:45 +0200
commit6bf32afb0bd57bd3ee43670a06a2d0c5448cb2c4 (patch)
tree19b7d0785943d22cc6e5355e75325a2755c66cd8 /lib/utils.js
parent6e277100ca3bb75bbae15a94b1b805c209570a62 (diff)
Use single quotes
Diffstat (limited to 'lib/utils.js')
-rw-r--r--lib/utils.js22
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/utils.js b/lib/utils.js
index 52541667..d9289dca 100644
--- a/lib/utils.js
+++ b/lib/utils.js
@@ -8,17 +8,17 @@ exports.getImageMimeType = function getImageMimeType (imagePath) {
var fileExtension = /[^.]+$/.exec(imagePath)
switch (fileExtension[0]) {
- case "bmp":
- return "image/bmp"
- case "gif":
- return "image/gif"
- case "jpg":
- case "jpeg":
- return "image/jpeg"
- case "png":
- return "image/png"
- case "tiff":
- return "image/tiff"
+ case 'bmp':
+ return 'image/bmp'
+ case 'gif':
+ return 'image/gif'
+ case 'jpg':
+ case 'jpeg':
+ return 'image/jpeg'
+ case 'png':
+ return 'image/png'
+ case 'tiff':
+ return 'image/tiff'
default:
return undefined
}