UNPKG

kgtolb

Version:

Es una calculadora de medidas de masa de LB a KG y KG a LB

14 lines (12 loc) 221 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.KGtoLB = KGtoLB; exports.LBtoKG = LBtoKG; function KGtoLB(num) { return num * 2.205; } function LBtoKG(num) { return num * 0.454; }