Skip to main content
Module

x/rambda/source/not.spec.js

Faster and smaller alternative to Ramda
Latest
File
import { not } from './not.js'
test('not', () => { expect(not(false)).toBeTrue() expect(not(true)).toBeFalse() expect(not(0)).toBeTrue() expect(not(1)).toBeFalse()})