Skip to main content
Module

x/rambda/dropRepeats-spec.ts

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