All Projects β†’ m3talstorm β†’ hashcode

m3talstorm / hashcode

Licence: MIT license
πŸ”‘ A javascript module for generating hashcodes of objects

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to hashcode

HashKode
Kotlin hashcode utilities
Stars: ✭ 15 (-44.44%)
Mutual labels:  hashcode
GoogleHashCode2018
Solutions to Google HashCode 2018
Stars: ✭ 14 (-48.15%)
Mutual labels:  hashcode
hashcode-2018
Solution for Google Hash Code 2018 Qualification Round
Stars: ✭ 14 (-48.15%)
Mutual labels:  hashcode
SpookilySharp
A .NET/Mono implementation of Bob Jenkins’ SpookyHash version 2. Offers 32- 64- and 128-bit hashes of strings, char and byte arrays, streams and any type of object represented by an array of simple types.
Stars: ✭ 20 (-25.93%)
Mutual labels:  hashcode
HashCode
Google Hash Code solutions.
Stars: ✭ 17 (-37.04%)
Mutual labels:  hashcode
GoogleHashCode2017
Assignments for the Google HashCode 2017
Stars: ✭ 16 (-40.74%)
Mutual labels:  hashcode
hashcode-practice-even-more-pizza
Google Hash Code 2021 practice problem: "Even More Pizza". Score: 731,455,475
Stars: ✭ 12 (-55.56%)
Mutual labels:  hashcode
lombok-rs
Lombok port for Rust
Stars: ✭ 31 (+14.81%)
Mutual labels:  hashcode

Hashcode

Build Status Downloads Npm Version Node Version Issues

Hashcode is a simple javascript module for generating hashcodes (integer representations) of objects.

Install

Node

npm install hashcode --save

Usage

Node

const Hashcode = require('hashcode')

const obj = {
    'foo' : 42,
    'bar' : "hello world",
    'baz' : false,
}

const hash = Hashcode.value(obj)

console.log(hash)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].