Skip to content

Commit 4b0552c

Browse files
committed
Create README.md
1 parent b7bec6b commit 4b0552c

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
A standalone implementation of hash table in JavaScript. It associates keys with values, and allows any object to be used as the key (unlike JavaScript's built-in `Object`, which only allows strings as property names).
2+
Also included is a hash set implementation, implemented by wrapping the keys of a hash table.
3+
4+
jshashtable requires no libraries and is designed to work in all ECMAScript 3 compliant environments, including all major browsers and Node.js. In particular, it has been tested and works in:
5+
6+
- Firefox (all versions, back to Phoenix 0.1)
7+
- Internet Explorer 5.5+
8+
- Safari 3+ (untested in previous versions)
9+
- Google Chrome (all versions)
10+
- Opera 7+
11+
12+
See the [jshashtable website](http://timdown.co.uk/jshashtable/) for full documentation.

0 commit comments

Comments
 (0)