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

sajov / feathers-solr / 8303783722

16 Mar 2024 12:16AM UTC coverage: 100.0%. Remained the same
8303783722

push

github

web-flow
build(deps): bump @feathersjs/commons from 5.0.23 to 5.0.24 (#143)

Bumps [@feathersjs/commons](https://github.com/feathersjs/feathers/tree/HEAD/packages/commons) from 5.0.23 to 5.0.24.
- [Release notes](https://github.com/feathersjs/feathers/releases)
- [Changelog](https://github.com/feathersjs/feathers/blob/dove/packages/commons/CHANGELOG.md)
- [Commits](https://github.com/feathersjs/feathers/commits/v5.0.24/packages/commons)

---
updated-dependencies:
- dependency-name: "@feathersjs/commons"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

134 of 134 branches covered (100.0%)

149 of 149 relevant lines covered (100.0%)

189.8 hits per line

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

100.0
/src/utils/operatorResolver.ts
1
export const operatorResolver: any = {
1✔
2
  $eq: (key: string, value: any) => `${key}:${value}`,
409✔
3
  $ne: (key: string, value: any) => `!${key}:${value}`,
4✔
4
  // @ts-ignore: TS6133
5
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
6
  $empty: (key: string, value: any) => `!${key}:*`,
1✔
7
  // @ts-ignore: TS6133
8
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
9
  $nempty: (key: string, value?: any) => `${key}:*`,
1✔
10
  $fuzzy: (key: string, value: any) => `${key}:${value}~`,
1✔
11
  $like: (key: string, value: any) => `${key}:*${value}*`,
4✔
12
  $nlike: (key: string, value: any) => `!${key}:*${value}*`,
4✔
13
  $starts: (key: string, value: any) => `${key}:${value}*`,
1✔
14
  $ends: (key: string, value: any) => `${key}:*${value}`,
1✔
15
  $in: (key: string, value: any) => `${key}:(${value.join(' OR ')})`,
31✔
16
  $nin: (key: string, value: any) => `!${key}:(${value.join(' OR ')})`,
6✔
17
  $lt: (key: string, value: any) => `${key}:[* TO ${value}}`,
8✔
18
  $lte: (key: string, value: any) => `${key}:[* TO ${value}]`,
4✔
19
  $gt: (key: string, value: any) => `${key}:{${value} TO *]`,
6✔
20
  $gte: (key: string, value: any) => `${key}:[${value} TO *]`,
8✔
21
  $or: (value: any) => `(${value.join(' OR ')})`,
9✔
22
  $and: (value: any) => Array.isArray(value) && value.length > 1 ?
81✔
23
    `(${value.join(' AND ')})` :
24
    Array.isArray(value[0]) ? value[0][0] : value[0]
74✔
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