UNPKG

rambdax

Version:

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

4 lines (3 loc) 93 B
export function prevIndex(index, list){ return index === 0 ? list.length - 1 : index - 1 }