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

gulpjs / gulp-cli / 15379317059

01 Jun 2025 08:53PM UTC coverage: 97.865%. Remained the same
15379317059

push

github

web-flow
chore: release 3.1.0 (#273)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

314 of 335 branches covered (93.73%)

596 of 609 relevant lines covered (97.87%)

122.68 hits per line

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

77.78
/lib/shared/array-find.js
1
'use strict';
2

3
function arrayFind(arr, fn) {
4
  if (!Array.isArray(arr)) {
153!
5
    return;
×
6
  }
7

8
  var idx = 0;
153✔
9
  while (idx < arr.length) {
153✔
10
    var result = fn(arr[idx]);
153✔
11
    if (result) {
153!
12
      // TODO: This is wrong in Liftoff
13
      return arr[idx];
153✔
14
    }
15
    idx++;
×
16
  }
17
}
18

19
module.exports = arrayFind;
153✔
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

© 2025 Coveralls, Inc