Sha256: 98dcca4df9a13f587b8ac4431d343ac2dd607967c42734d97633de2ff382390d
Contents?: true
Size: 245 Bytes
Versions: 24
Compression:
Stored size: 245 Bytes
Contents
'use strict'; const murmur = require('imurmurhash'); /** * hash the given string * @param {string} str the string to hash * @returns {string} the hash */ module.exports = function hash(str) { return murmur(str).result().toString(36); };
Version data entries
24 entries across 24 versions & 1 rubygems