aboutsummaryrefslogtreecommitdiff
path: root/webAO/utils/calculatorHandler.js
diff options
context:
space:
mode:
authorstonedDiscord <stonedDiscord@users.noreply.github.com>2024-11-20 13:04:14 +0000
committerGitHub Action <actions@github.com>2024-11-20 13:04:14 +0000
commitb8283b373caa2ac198497a8dd466bf494d81982a (patch)
tree23de734e7ab5c093ace1d1a8fec716bb7603bdbf /webAO/utils/calculatorHandler.js
parent376fadcca3a1b5c32a3361b2843c6c576237a1a3 (diff)
Prettified Code!
Diffstat (limited to 'webAO/utils/calculatorHandler.js')
-rw-r--r--webAO/utils/calculatorHandler.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/webAO/utils/calculatorHandler.js b/webAO/utils/calculatorHandler.js
index 890b53c..301de0e 100644
--- a/webAO/utils/calculatorHandler.js
+++ b/webAO/utils/calculatorHandler.js
@@ -1,9 +1,9 @@
-import calculateGifLength from './calculateGifLength';
-import calculateWebpLength from './calculateWebpLength';
-import calculateApngLength from './calculateApngLength';
+import calculateGifLength from "./calculateGifLength";
+import calculateWebpLength from "./calculateWebpLength";
+import calculateApngLength from "./calculateApngLength";
export default {
- '.gif': calculateGifLength,
- '.webp': calculateWebpLength,
- '.apng': calculateApngLength,
+ ".gif": calculateGifLength,
+ ".webp": calculateWebpLength,
+ ".apng": calculateApngLength,
};