• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

bordoley / reactive-js / 13617824920

02 Mar 2025 05:41PM UTC coverage: 96.544% (-0.03%) from 96.572%
13617824920

push

github

bordoley
move forEach into DeferredComputation

933 of 1044 branches covered (89.37%)

Branch coverage included in aggregate %.

5212 of 5321 relevant lines covered (97.95%)

4802.15 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

80.0
/src/concurrent/Observable/__private__/Observable.createSynchronousObservableWithSideEffects.ts
1
import {
9✔
2
  ComputationLike_isDeferred,
3
  ComputationLike_isPure,
4
  ComputationLike_isSynchronous,
5
} from "../../../computations.js";
6
import { ObserverLike } from "../../../concurrent.js";
7
import { SideEffect1 } from "../../../functions.js";
8
import Observable_createWithConfig from "./Observable.createWithConfig.js";
9✔
9

10
const Observable_createSynchronousObservableWithSideEffects = <T>(
9✔
11
  f: SideEffect1<ObserverLike<T>>,
12
) =>
13
  Observable_createWithConfig(f, {
×
14
    [ComputationLike_isDeferred]: true,
15
    [ComputationLike_isPure]: false,
16
    [ComputationLike_isSynchronous]: true,
17
  });
18

19
export default Observable_createSynchronousObservableWithSideEffects;
9✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc