Skip to main content
Module

x/rambda/source/not.spec.js

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