UNPKG

189 BJavaScriptView Raw
1export default function getHalves(widths) {
2 const halves = []
3
4 widths.forEach(width => {
5 const half = width / 2
6
7 halves.push(half)
8 halves.push(half)
9 })
10
11 return halves
12}