Skip to main content
Module

x/rambda/source/removeIndex-spec.ts

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