Skip to content

Commit 3ec53d6

Browse files
committed
Ignore <<, & jshint warnings
1 parent 19105e2 commit 3ec53d6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/data-structures/hash-table.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,10 @@
4141

4242
for (i = 0; i < str.length; i += 1) {
4343
character = str.charCodeAt(i);
44+
/*jshint -W016 */
4445
hashCode = ((hashCode << 5) - hashCode) + character;
4546
hashCode = hashCode & hashCode;
47+
/*jshint -W016 */
4648
}
4749

4850
return hashCode;

0 commit comments

Comments
 (0)