Skip to main content
Module

x/rambda/mathMod-spec.ts

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