Skip to main content
Module

x/rambda/shuffle-spec.ts

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