aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/utilities/helpers.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/js/utilities/helpers.js')
-rw-r--r--src/js/utilities/helpers.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/js/utilities/helpers.js b/src/js/utilities/helpers.js
deleted file mode 100644
index 8cc88c9..0000000
--- a/src/js/utilities/helpers.js
+++ /dev/null
@@ -1,10 +0,0 @@
-/**
- * Check the size of the current viewport.
- * @returns {Boolean} True if viewport lower than 1200px; false otherwise.
- */
-function isSmallVw() {
- return window.innerWidth < 1200;
-}
-
-// eslint-disable-next-line import/prefer-default-export
-export { isSmallVw };