Skip to main content
Module

x/rambda/prevIndex.js

Faster and smaller alternative to Ramda
Go to Latest
File
export function prevIndex(index, list){ return index === 0 ? list.length - 1 : index - 1}