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

nodeplusplus / xregex-helpers / 71f20f68-6b46-4647-a881-0b6888db16da

pending completion
71f20f68-6b46-4647-a881-0b6888db16da

Pull #13

circleci

Unknown Committer
Unknown Commit Message
Pull Request #13: Bump json5 from 2.1.3 to 2.2.3

52 of 52 branches covered (100.0%)

Branch coverage included in aggregate %.

75 of 75 relevant lines covered (100.0%)

19.77 hits per line

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

100.0
/src/redis/generateKey.ts
1
export function generateKey(
4✔
2
  keys: Array<string | undefined>,
3
  withEnd = false,
1✔
4
  delimiter = "/"
8✔
5
): string {
6
  const key = keys.filter(Boolean).join(delimiter);
10✔
7
  if (!key) return "";
10✔
8

9
  return withEnd ? [key, delimiter].join("") : key;
5✔
10
}
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