change
Description
Examples
import { from } from 'rxjs';
import { change } from '@bottlenose/rxstats';
const num$ = from([2, 5, 9, 16, 26]);
const change$ = num$.pipe(
change()
);
change$.subscribe(console.log);
// Output:
// 3
// 4
// 7
// 10API
Since
Parameters
Options
Returns
Last updated