Coder Social home page Coder Social logo

stable-hash's People

Contributors

b2o5t avatar intrnl avatar kenakafrosty avatar kikobeats avatar monstrag avatar paul-sachs avatar shuding avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

stable-hash's Issues

Isomorphic objects with circular references

const o1 = {}; o1.o = o1
const o2 = {}; o2.o = o2

hash(o1) !== hash(o2) // bug!

To fix this problem, we need an extra WeakMap and a reference counter only for recursive hash executions.

Add note about consistency

The consistency of this lib is sometimes guaranteed by the singularity of the WeakMap instance. So we should add some notes that it might have issue of consistency with multiple instances, e.g. server/client or parent/worker.

Missing types

It would by nice if there were TS intellisense. Since the lib is so simple, we could use a basic index.d.ts file.

TypeError: default is not a function

I created index.d.ts file with following code:

declare module "stable-hash" {
  export default function stablehash(key: unknown): string;
}

Also tried this:

declare module "stable-hash" {
  function stablehash(key: unknown): string;
  export = stablehash;
}

In both cases got error TypeError: default is not a function when run unit tests using vitest. How to fix this error?

Unit tests

It would be great to have some unit tests, just one simple script file is enough.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.