UNPKG
mls-elo
Version:
latest (0.3.1)
0.3.1
0.3.0
0.2.0
0.1.0
0.0.1
Calculate ELO rankings for Major League Soccer
github.com/doug-wade/mls-elo
doug-wade/mls-elo
mls-elo
/
lib
/
heightToInches.js
6 lines
(5 loc)
•
169 B
JavaScript
View Raw
1
2
3
4
5
6
module
.
exports
=
function
heightToInches
(
str
) {
const
trimmed = str.
replace
(
'"'
,
''
);
const
[feet, inches] = trimmed.
split
(
"'"
);
return
(feet *
12
) + (+inches); }