UNPKG
kgtolb
Version:
latest (0.1.2)
0.1.2
0.1.1
0.1.0
Es una calculadora de medidas de masa de LB a KG y KG a LB
github.com/Th3Cod3/KGtoLB
Th3Cod3/KGtoLB
kgtolb
/
src
/
index.js
7 lines
(6 loc)
•
105 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
function
KGtoLB
(
num
) {
return
num *
2.205
}
export
function
LBtoKG
(
num
) {
return
num *
0.454
}