Skip to content

Commit

Permalink
[minor] JSDoc'd
Browse files Browse the repository at this point in the history
  • Loading branch information
3rd-Eden committed Aug 21, 2015
1 parent 9cef5c2 commit be1aa68
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions index.js
Expand Up @@ -4,6 +4,11 @@ var SimpleCache = require("simple-lru-cache")
, parse = require('connection-parse')
, crypto = require('crypto');

/**
* Generate the hash of the value.
*
* @api private
*/
function hashValueHash(a, b, c, d) {
return ((a << 24) | (b << 16) | (c << 8) | d) >>> 0;
}
Expand Down

0 comments on commit be1aa68

Please sign in to comment.