Skip to main content
Module

x/rambda/piped-spec.ts

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