fnv1a
Simple 32 bit FNV-1a hash algorithm implementation.
Last updated 4 years ago by schwarzkopfb .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install fnv1a 
SYNC missed versions from official npm registry.

view on npm npm module downloads per month node version license

fnv1a

Simple and fast 32 bit FNV-1a hash for node.js based on this.

Usage

import { equal } from 'assert'
import hash from 'fnv1a'

const value = hash('node.js')

// decimal
equal(value, 3096844302)

// hexadecimal
equal(value.toString(16), 'b896180e')

// string
equal(value.toString(36), '1f7s4cu')

Note: importing via require() is also supported.

Installation

npm install fnv1a

License

MIT license.

Current Tags

  • 1.1.1                                ...           latest (4 years ago)

4 Versions

  • 1.1.1                                ...           4 years ago
  • 1.1.0                                ...           4 years ago
  • 1.0.1                                ...           10 years ago
  • 1.0.0                                ...           10 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (3)
Dependents (2)

Copyright 2013 - present © cnpmjs.org | Home |