UNPKG

@qntm-code/utils

Version:

A collection of useful utility functions with associated TypeScript types. All functions have been unit tested.

9 lines (8 loc) 267 B
import { msToUnit, unitToMS } from './index.js'; /** * Converts a value of a given TimeUnit into another TimeUnit */ export function convertTimeUnit(value, sourceUnit, resultUnit) { const ms = unitToMS(value, sourceUnit); return msToUnit(ms, resultUnit); }