iterable-hash-table
Advanced tools
Comparing version 2.2.0 to 2.2.1
{ | ||
"name": "iterable-hash-table", | ||
"version": "2.2.0", | ||
"version": "2.2.1", | ||
"description": "A simple Iterable Hash Table written in TypeScript", | ||
@@ -18,3 +18,16 @@ "main": "public/HashTable.js", | ||
"jest": "^25.1.0" | ||
} | ||
}, | ||
"keywords": [ | ||
"hash-table", | ||
"hash", | ||
"table", | ||
"iterable", | ||
"iterable-hash-table", | ||
"iterable-hashtable", | ||
"hashtable", | ||
"hash table", | ||
"iterable hash table", | ||
"hash table loop", | ||
"loop" | ||
] | ||
} |
@@ -84,3 +84,3 @@ 'use strict'; | ||
v1 = (t1 + (t0 >>> 16)) & 65535; | ||
v0 = t0 & 65535 | ||
v0 = t0 & 65535; | ||
}; | ||
@@ -87,0 +87,0 @@ |
42007