Skip to main content
Module

x/rambda/source/identity.spec.js

Faster and smaller alternative to Ramda
Latest
File
import { identity } from './identity.js'
test('happy', () => { expect(identity(7)).toBe(7) expect(identity(true)).toBeTrue() expect(identity({ a : 1 })).toEqual({ a : 1 })})