Skip to main content
Module

x/rambda/source/move-spec.ts

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