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

paldepind / flyd / 318
100%
master: 100%

Build:
Build:
LAST BUILD BRANCH: dependabot/npm_and_yarn/hosted-git-info-2.8.9
DEFAULT BRANCH: master
Ran 12 Jul 2018 03:01PM UTC
Jobs 3
Files 1
Run time 48s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

pending completion
318

Pull #175

travis-ci

web-flow
Flip argument order of takeUntil module

The takeUntil module violates one of the first principles of functional
programming. Its argument order was (src, end) which is a data first
argument order.

This commit flips the argument order to (end, src) allowing us to better
use takeUntil in pipelines such as:

```js
const query = stream('');

// Start fetching the results but if they haven't
// arrived when a new query is emitted
// stop listening to the stream
const results = query
 .chain(q =>
    fromPromise(getResults(q))
      .pipe(takeUntil(query))
  )
```

This also fixes an issue with takeUntil where if the new endStream had a
value the dependent stream wouldn't update.
Pull Request #175: Flip argument order of takeUntil module

81 of 84 branches covered (96.43%)

253 of 253 relevant lines covered (100.0%)

592.14 hits per line

Jobs
ID Job ID Ran Files Coverage
1 318.1 12 Jul 2018 03:02PM UTC 0
100.0
Travis Job 318.1
2 318.2 12 Jul 2018 03:01PM UTC 0
100.0
Travis Job 318.2
3 318.3 12 Jul 2018 03:01PM UTC 0
100.0
Travis Job 318.3
Source Files on build 318
Detailed source file information is not available for this build.
  • Back to Repo
  • Travis Build #318
  • Pull Request #175
  • PR Base - master (#314)
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