Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 281 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 281 Bytes

string-hash

This is a simple string hashing function. It creates a hash of a string as a 32-bit number.

Its characteristics are good performance and good distribution of hashes.

Usage

var hash = require('string-hash');

var hashVal = hash('Hello World!');