const hashFunction = require('./hash-function')
module.exports = functioncreateIntegerHash (inputStr) {
// Hash to 32 bit unsigned integerconst hash = hashFunction(inputStr)
// Normalize to range of postive values of signed integerreturnMath.round((hash / 4294967295) * (2147483647))
}