UNPKG

@nftgo/gorarity

Version:

An algorithm to calculate rarity of NFT(how special it is), based on Jaccard Distance.

5 lines (4 loc) 128 B
export function round(n, precision) { const factor = Math.pow(10, precision); return Math.round(n * factor) / factor; }