A small library to convert time to different units
- Convert time to different units
- Simple API
- No dependencies
- Tiny size
npm i @vyke/time
import { seconds } from '@vyke/time'
console.log(seconds(30, 'm')) // 0.5
// convert by default to milliseconds
console.log(seconds(30)) // 30000
Convert a time amount from days to other time units
Convert a time amount from hours to other time units
Convert a time amount from minutes to other time units
Convert a time amount from seconds to other time units
Convert a time amount from milliseconds to other time units