-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |