UNPKG

@arwes/text

Version:

Futuristic Sci-Fi UI Web Framework

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