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

nodecraft / spawnpoint / 22017534085

14 Feb 2026 12:43PM UTC coverage: 84.697% (-0.3%) from 85.016%
22017534085

Pull #109

github

web-flow
chore(deps): bump qs in /examples/framework-express

Bumps [qs](https://github.com/ljharb/qs) from 6.14.1 to 6.14.2.
- [Changelog](https://github.com/ljharb/qs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/ljharb/qs/compare/v6.14.1...v6.14.2)

---
updated-dependencies:
- dependency-name: qs
  dependency-version: 6.14.2
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Pull Request #109: chore(deps): bump qs from 6.14.1 to 6.14.2 in /examples/framework-express

259 of 348 branches covered (74.43%)

Branch coverage included in aggregate %.

538 of 593 relevant lines covered (90.73%)

2130.04 hits per line

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

76.47
/lib/json-handler.js
1
'use strict';
2

3
const fs = require('node:fs');
60✔
4

5
const stripJsonCommentsRaw = require('strip-json-comments');
60✔
6

7
const stripJsonComments = stripJsonCommentsRaw?.default || stripJsonCommentsRaw;
1,188!
8

9
// eslint-disable-next-line n/no-deprecated-api
10
require.extensions['.json'] = function(module, filename) {
1,188✔
11
        let content = fs.readFileSync(filename, 'utf8');
1,188✔
12

13
        // Only strip comments if file likely contains them
14
        if (content.includes('//') || content.includes('/*')) {
×
15
                content = stripJsonComments(content);
6✔
16
        }
17

18
        try {
24✔
19
                module.exports = JSON.parse(content);
24✔
20
        } catch (err) {
21
                // Add filename to error for better debugging
22
                err.message = `${err.message} in ${filename}`;
12✔
23
                throw err;
12✔
24
        }
25
};
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