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

teableio / teable / 8537011228

03 Apr 2024 10:15AM UTC coverage: 82.825% (+61.3%) from 21.535%
8537011228

Pull #514

github

web-flow
Merge fe52186b9 into 45ee7ebb3
Pull Request #514: refactor: user and link selector

4033 of 4226 branches covered (95.43%)

343 of 372 new or added lines in 8 files covered. (92.2%)

26958 of 32548 relevant lines covered (82.83%)

1213.2 hits per line

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

10.0
/apps/nestjs-backend/src/utils/string-hash.ts
1
export const string2Hash = (str: string) => {
4✔
2
  let hash = 5381;
×
3
  let i = str.length;
×
4

×
5
  while (i) {
×
6
    hash = (hash * 33) ^ str.charCodeAt(--i);
×
7
  }
×
8

×
9
  return hash >>> 0;
×
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

© 2025 Coveralls, Inc