Skip to main content
Module

x/rambda/source/memoizeWith-spec.ts

Faster and smaller alternative to Ramda
Latest
File
import {memoizeWith} from 'rambda'
describe('R.memoizeWith', () => { it('happy', () => { const result = memoizeWith( (x: number) => x, (n: number) => n )
result // $ExpectType (n: number) => number })})