duhaime / minhash

Quickly estimate the similarity between many sets
https://duhaime.github.io/minhash/
MIT License
50 stars 11 forks source link

Unrecognized token '*' when using in node.js #2

Closed ghanathe closed 6 years ago

ghanathe commented 6 years ago

minhash.js has 2**32 it should be Math.pow(2,32)

duhaime commented 6 years ago

Thanks @ghanathe! It looks this does indeed break on older Node versions. Newer Node engines can interpret the ** alright though:

screen shot 2018-06-02 at 7 11 34 am

I'll push a fix in just a moment...