UNPKG

@yetnt/ump

Version:

A very useless math package for your complex javascript projects

9 lines (8 loc) 269 B
/** * Converts between distance/length units * * @param n - The value to be converted * @param from - The current distance unit. * @param to - The distamce unit to be converted to. */ export declare function distance(n: number, from: string, to: string): number;