summaryrefslogtreecommitdiffstats
path: root/frontend/lib/image.js
diff options
context:
space:
mode:
authorWes Bos <wesbos@gmail.com>2018-02-15 16:59:58 -0500
committerWes Bos <wesbos@gmail.com>2018-02-15 16:59:58 -0500
commit8f2c595eca30e2d7138c8e8d6685774a8f44e55d (patch)
tree3408b9c8eb3b0ea43cb72e13e0bd6393ab5bac61 /frontend/lib/image.js
parenta09b01abf7c03e6b7e43f2175e5a34501808821b (diff)
omg
Diffstat (limited to 'frontend/lib/image.js')
-rw-r--r--frontend/lib/image.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/frontend/lib/image.js b/frontend/lib/image.js
deleted file mode 100644
index 5b6efb9..0000000
--- a/frontend/lib/image.js
+++ /dev/null
@@ -1,6 +0,0 @@
-import { imageEndpoint } from '../config';
-
-export default function(image, width = 300, height = 300) {
- if (!image || !image.secret) return '';
- return `${imageEndpoint}/${image.secret}/${width}x${height}`;
-}