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

teableio / teable / 8453146637

27 Mar 2024 02:08PM CUT coverage: 82.388% (+60.6%) from 21.837%
8453146637

push

github

web-flow
fix: date field grouping collapse (#505)

* fix: date field grouping collapse

* fix: remove redundant record menu items

* fix: long text field editor style

3850 of 4032 branches covered (95.49%)

1 of 2 new or added lines in 1 file covered. (50.0%)

25944 of 31490 relevant lines covered (82.39%)

1211.99 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