Completed
Push — master ( 03cb87...68903a )
by Michael
28s queued 12s
created

getWeight.js ➔ getWeight   A

Complexity

Conditions 2

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 2
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
export default function getWeight(weight) {
2
  return (weight || weight === 0) ? parseFloat(weight) : 1
3
}
4