UNPKG

callbag-map

Version:

Callbag operator that applies a transformation on data passing through it

6 lines (4 loc) 125 B
import { Source } from 'callbag'; export default function map<I, O>( f: (d: I) => O, ): (source: Source<I>) => Source<O>;