Skip to content

BoogeeDoo/node-cityhash

Repository files navigation

CityHash for Node.js

cityhash cityhash Test & Coverage Coverage Status License Dependencies Status Star at GitHub

Pure JavaScript implement for CityHash. (No C++ binding)

Installation

$ npm install --save google-cityhash

Usage

const hash = require('google-cityhash');

CityHash 32

const ret = hash.city32('text');

Returns a hash number.

CityHash 64

const ret = hash.city64('text');

Returns a Long object.

CityHash 128

const ret = hash.city128('text');

Returns a City128Value object.

Contribution

You're welcome to make pull requests.

「雖然我覺得不怎麼可能有人會關注我」

About

Pure JavaScript implement for CityHash. (No C++ binding)

Resources

License

Stars

Watchers

Forks

Packages

No packages published