Skip to content

Commit

Permalink
Create README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
timdown committed Mar 15, 2015
1 parent b7bec6b commit 4b0552c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
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).
Also included is a hash set implementation, implemented by wrapping the keys of a hash table.

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:

- Firefox (all versions, back to Phoenix 0.1)
- Internet Explorer 5.5+
- Safari 3+ (untested in previous versions)
- Google Chrome (all versions)
- Opera 7+

See the [jshashtable website](http://timdown.co.uk/jshashtable/) for full documentation.

0 comments on commit 4b0552c

Please sign in to comment.