@peerbit/cache
Advanced tools
Comparing version 2.1.0 to 2.1.1
@@ -13,3 +13,3 @@ // Fifo | ||
if (options.max <= 0) { | ||
throw new Error("Expecting max >= 0"); | ||
throw new Error("Expecting max > 0"); | ||
} | ||
@@ -16,0 +16,0 @@ this.max = options.max; |
{ | ||
"name": "@peerbit/cache", | ||
"version": "2.1.0", | ||
"version": "2.1.1", | ||
"description": "Simple cache", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -21,3 +21,3 @@ // Fifo | ||
if (options.max <= 0) { | ||
throw new Error("Expecting max >= 0"); | ||
throw new Error("Expecting max > 0"); | ||
} | ||
@@ -24,0 +24,0 @@ this.max = options.max; |
Sorry, the diff of this file is not supported yet
11561
2338