Skip to main content
Module

x/rambda/nth-spec.ts

Faster and smaller alternative to Ramda
Go to Latest
File
import {nth} from 'rambda'
const list = [1, 2, 3]
describe('R.nth', () => { it('happy', () => { const result = nth(4, list)
result // $ExpectType number | undefined }) it('curried', () => { const result = nth(1)(list)
result // $ExpectType number | undefined })})