Files
30-seconds-of-code/test/sdbm/sdbm.js

8 lines
197 B
JavaScript

module.exports = sdbm = str => {
let arr = str.split('');
return arr.reduce(
(hashCode, currentVal) =>
(hashCode = currentVal.charCodeAt(0) + (hashCode << 6) + (hashCode << 16) - hashCode),
0
);
};