Mirror: 🎩 A tiny but capable push & pull stream library for TypeScript and Flow

Update operators.md (#78)

- add an initialValue to the TypeScript `scan` example

Changed files
+1 -1
docs
+1 -1
docs/api/operators.md
···
pipe(
fromArray([1, 2, 3, 4, 5, 6]),
-
scan((acc, val) => acc + val),
+
scan((acc, val) => acc + val, 0),
subscribe(val => console.log(val))
);