aboutsummaryrefslogtreecommitdiff
path: root/webAO/utils/calculatorHandler.js
blob: 890b53c5a09d1b37c4504d68bb5b1216235b1fb0 (plain)
1
2
3
4
5
6
7
8
9
import calculateGifLength from './calculateGifLength';
import calculateWebpLength from './calculateWebpLength';
import calculateApngLength from './calculateApngLength';

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