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
/
dist
/
src
/
index.js
14 lines
(12 loc)
•
221 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"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
; }