const getAnimationTextDuration = (props) => {
const { length, maxDuration = 4, charactersPerSecond = 100 } = props;
const realDuration = ((1000 / charactersPerSecond) * length) / 1000;
return Math.min(realDuration, maxDuration);
};
export { getAnimationTextDuration };