2.0.0 • Published 3 years ago

sdbm v2.0.0

Weekly downloads
390
License
MIT
Repository
github
Last release
3 years ago

sdbm

SDBM non-cryptographic hash function

SDBM has good distribution and collisions are rare.

Install

$ npm install sdbm

Usage

import sdbm from 'sdbm';

sdbm('🦄🌈');
//=> 4053542802

It returns the hash as a positive integer.

Related

  • fnv1a - FNV-1a non-cryptographic hash function
  • djb2a - DJB2a non-cryptographic hash function