hashcode
Version:
hashcode implementation by Stuart Bannerman (https://github.com/stuartbannerman/hashcode) packaged as npm-module.
36 lines (23 loc) • 781 B
Markdown
Hashcode is originaly developed by Stuart Bannerman (me@stuartbannerman.com).
It's a simple JavaScript module for generating hashcodes (integer representations) of objects.
For Docs, License, Tests and futher project related articles please check the original github-repo:
https://github.com/stuartbannerman/hashcode
## Usage
Before you start you need to install it:
```
npm install hashcode
```
Now you can use it in your code:
```javascript
var encode = require( 'hashcode' ).hashCode;
var hash = encode().value( "my string value" );
```
Added deployments for npm and requireJS.
Basic Function for HasCode implemented.
**write code & have fun!**
A. Siebert