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

lad-tech / toolbelt / 4483370358

pending completion
4483370358

push

github

GitHub
7 fix lib (#8)

106 of 107 branches covered (99.07%)

Branch coverage included in aggregate %.

133 of 133 relevant lines covered (100.0%)

10.99 hits per line

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

100.0
/src/util/predicates.ts
1
export function isString(value: unknown): value is string {
3✔
2
  return typeof value === 'string';
24✔
3
}
4

5
export function isNumber(value: unknown): value is number {
3✔
6
  return typeof value === 'number';
26✔
7
}
8

9
export function isBoolean(value: unknown): value is boolean {
3✔
10
  return typeof value === 'boolean';
25✔
11
}
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