UNPKG

171 BJavaScriptView Raw
1export default function getIndexOfPanelToShow(at, regions) {
2 const index = regions.findIndex(region => at < region)
3 return index === -1 ? regions.length - 1 : index
4}