@broofa/fnv1a

1.0.1 • Public • Published

@broofa/fnv1a

Drop-in replacment for the fnv1a module, with support for unicode and incremental hashing.

See fnv1a module for details

Installation

npm i @broofa/fnv1a

Example: One-time hash

const fnv1a = require('@broofa/fnv1a');

fnv1a('hello world'); // => 2166136261

Example: Incremental hash

const fnv1a = require('@broofa/fnv1a');

const digest = fnv1a.digest();
digest.update('hello');
digest.hash;   // => 1335831723
digest.update(' world');
digest.hash;  // => 2166136261

// Or, more concisely
fnv1a.digest()
  .update('hello');
  .update(' world');
  .hash;  // => 2166136261

Readme

Keywords

Package Sidebar

Install

npm i @broofa/fnv1a

Weekly Downloads

2

Version

1.0.1

License

ISC

Unpacked Size

5.51 kB

Total Files

4

Last publish

Collaborators

  • broofa