fp-pipe-ref

Installation
SKILL.md

pipe & flow Quick Reference

pipe - Transform a Value

import { pipe } from 'fp-ts/function'

// pipe(startValue, fn1, fn2, fn3)
// = fn3(fn2(fn1(startValue)))

const result = pipe(
  '  hello world  ',
  s => s.trim(),
  s => s.toUpperCase(),
  s => s.split(' ')
)
// ['HELLO', 'WORLD']
Installs
28
GitHub Stars
40.9K
First Seen
Mar 15, 2026
fp-pipe-ref — sickn33/antigravity-awesome-skills