strHash.js 203 B

12345678910
  1. exports = function(str) {
  2. var hash = 5381;
  3. var i = str.length;
  4. while (i) {
  5. hash = (hash << 5) + hash + str.charCodeAt(--i);
  6. }
  7. return hash >>> 0;
  8. };
  9. module.exports = exports;