UNPKG

180 BJavaScriptView Raw
1export default function getWidths(widths, shouldGoMobile, viewportWidth) {
2 return widths.map(
3 width => (shouldGoMobile ? (width < 360 ? width : viewportWidth) : width)
4 )
5}