UNPKG

framer-motion

Version:

A simple and powerful React animation library

10 lines (8 loc) 252 B
/** * Converts seconds to milliseconds * * @param seconds - Time in seconds. * @return milliseconds - Converted time in milliseconds. */ var secondsToMilliseconds = function (seconds) { return seconds * 1000; }; export { secondsToMilliseconds };