aboutsummaryrefslogtreecommitdiff
path: root/webAO/utils/calculatorHandler.js
blob: 301de0e574ffef4f0c0d0ddea7cfc9374a17b59f (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,
};