Skip to main content
Module

x/rambda/source/tap-spec.ts

Faster and smaller alternative to Ramda
Go to Latest
File
import {tap, pipe} from 'rambda'
describe('R.tap', () => { it('happy', () => { pipe( tap(x => { x // $ExpectType number[] }), (x: number[]) => x.length )([1, 2]) })})