UNPKG

mls-elo

Version:

Calculate ELO rankings for Major League Soccer

6 lines (5 loc) 169 B
module.exports = function heightToInches(str) { const trimmed = str.replace('"', ''); const [feet, inches] = trimmed.split("'"); return (feet * 12) + (+inches); }