aboutsummaryrefslogtreecommitdiff
path: root/webAO/utils/calculatorHandler.js
blob: 76865739640f719ea4fb41e4be7427887f94ee99 (plain)
1
2
3
4
5
6
7
import calculateGifLength from './calculateGifLength';
import calculateWebpLength from './calculateWebpLength';

export default {
  '.gif': calculateGifLength,
  '.webp': calculateWebpLength,
};