mersenne-hash-table
Advanced tools
Comparing version 0.0.2 to 0.0.3
@@ -12,3 +12,3 @@ "use-strict"; | ||
class FastStringMap { | ||
class MersenneHashTable { | ||
constructor() { | ||
@@ -135,2 +135,2 @@ this._mersenneIndex = 4; | ||
module.exports = FastStringMap; | ||
module.exports = MersenneHashTable; |
const Map = require("."); | ||
describe("FastStringMap", () => { | ||
describe("MersenneHashTable", () => { | ||
describe("get and set", () => { | ||
@@ -5,0 +5,0 @@ it("should get and set a string property", () => { |
{ | ||
"name": "mersenne-hash-table", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"description": "Fast Node.js hashtable which uses Mersenne primes to reduce modulo operations", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8316