Skip to main content
Module

x/rambda/prevIndex.spec.js

Faster and smaller alternative to Ramda
Go to Latest
File
import { prevIndex } from './prevIndex'
const list = [ 1, 2, 3, 4 ]
test('happy path 1', () => { expect(prevIndex(2, list)).toEqual(1)})
test('happy path 2', () => { expect(prevIndex(0, list)).toEqual(3)})