Skip to main content
Module

x/rambda/uniq-spec.ts

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