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

teableio / teable / 8468158184

28 Mar 2024 01:35PM CUT coverage: 82.464% (+60.6%) from 21.828%
8468158184

Pull #484

github

web-flow
Merge c20c5dad5 into 53432a5aa
Pull Request #484: feat: support increment import

3938 of 4143 branches covered (95.05%)

65 of 69 new or added lines in 3 files covered. (94.2%)

26137 of 31695 relevant lines covered (82.46%)

1210.61 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