2.0.0 • Published 3 years ago

@sindresorhus/string-hash v2.0.0

Weekly downloads
5,491
License
MIT
Repository
github
Last release
3 years ago

string-hash

Get the hash of a string

Uses the non-cryptographic hash function FNV-1a.

Similar to Java's String#hashCode().

Install

$ npm install @sindresorhus/string-hash

Usage

import stringHash from '@sindresorhus/string-hash';

stringHash('🦄🌈');
//=> 2868248295

stringHash('👌😎');
//=> 2903279002

It returns the hash as a positive integer.