roundTo
Last updated
Last updated
import { from } from 'rxjs';
import { roundTo } from '@buccaneer/rxjs-stats';
const num$ = from([1.234567, 4.5678]);
const roundedNum$ = num$.pipe(
roundTo(3)
);
roundedNum$.subscribe(console.log);
// Output:
// 1.235
// 4.568