Comparing version 1.0.8 to 1.0.9
@@ -0,3 +1,7 @@ | ||
/** Options for calling `.set()` on a FrailMap. */ | ||
export type SetOptions = { | ||
/** Use strong reference for this value. */ | ||
/** | ||
* Use strong reference for this value, preventing it from being garbage | ||
* collected. | ||
*/ | ||
strong?: boolean; | ||
@@ -4,0 +8,0 @@ }; |
{ | ||
"name": "frail-map", | ||
"version": "1.0.8", | ||
"version": "1.0.9", | ||
"description": "FrailMap is an extension of WeakMap that supports primitive values using WeakRef.", | ||
"keywords": [ | ||
"dictionary", | ||
"garbage collection", | ||
"key-value", | ||
"map", | ||
"object map", | ||
"array map", | ||
"graph", | ||
"two-way association", | ||
"bidirectional mapping", | ||
"many to many relationship", | ||
"multiple keys", | ||
"multiple values" | ||
"memory management", | ||
"primitive values", | ||
"WeakMap" | ||
], | ||
@@ -17,0 +13,0 @@ "repository": { |
@@ -0,3 +1,7 @@ | ||
/** Options for calling `.set()` on a FrailMap. */ | ||
export type SetOptions = { | ||
/** Use strong reference for this value. */ | ||
/** | ||
* Use strong reference for this value, preventing it from being garbage | ||
* collected. | ||
*/ | ||
strong?: boolean; | ||
@@ -4,0 +8,0 @@ }; |
18474
441