Skip to main content
Module

x/rambda/negate.spec.js

Faster and smaller alternative to Ramda
Go to Latest
File
import { negate } from './negate'
test('negate', () => { expect(negate(420)).toEqual(-420) expect(negate(-13)).toEqual(13)})