UNPKG
hash-bc
Version:
latest (1.0.0)
1.0.0
A easy Hash Table for JavaScript
hash-bc
/
src
/
HashItem.js
9 lines
(7 loc)
•
123 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
class
HashItem
{
constructor
(key, value) {
this
.key = key;
this
.value = value; } } module.exports = HashItem;