Skip to main content
Module

x/rambda/source/add-spec.ts

Faster and smaller alternative to Ramda
Go to Latest
File
import {add} from 'rambda'
describe('R.add', () => { it('happy', () => { const result = add(4, 1)
result // $ExpectType number }) it('curried', () => { const result = add(4)(1)
result // $ExpectType number })})