Skip to main content
Module

x/rambda/source/complement-spec.ts

Faster and smaller alternative to Ramda
Go to Latest
File
import {complement, isNil} from 'rambda'
describe('R.complement', () => { it('happy', () => { const fn = complement(isNil) const result = fn(null) result // $ExpectType boolean })})