blob: 90721957251deef67de4fd249c3952247164d7d6 (
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,
};
|