UNPKG

rambdax

Version:

Extended version of Rambda - a lightweight, faster alternative to Ramda

4 lines (3 loc) 92 B
export function nextIndex(index, list){ return index >= list.length - 1 ? 0 : index + 1 }