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

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