Comparing version
{ | ||
"name": "frozen-set", | ||
"version": "0.0.1", | ||
"version": "1.0.0", | ||
"description": "Like Set, but without methods for mutation", | ||
"main": "index.js", | ||
"files": [ | ||
"index.js", | ||
"really-frozen.js", | ||
"mostly-frozen.js" | ||
], | ||
"scripts": { | ||
@@ -15,3 +20,6 @@ "test": "echo \"Error: no test specified\" && exit 1" | ||
"author": "bakkot", | ||
"license": "Apache-2.0" | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"hidden-state": "^1.0.0" | ||
} | ||
} |
@@ -1,3 +0,7 @@ | ||
## Frozen sets | ||
## `frozen-set` | ||
WIP. | ||
This [npm module](https://www.npmjs.com/package/frozen-set) provides frozen (fixed) sets: sets which will not change after construction. These behave like ES2015 Sets in all other ways, but do not expose `add`, `clear`, or `delete` (or any other set-modifying methods which might be added to the language in the future). | ||
There are two versions: `FrozenSet` and `MostlyFrozenSet`. These have the same API, but `FrozenSet` will deter even an actively malicious adversary from modifying the underlying set, whereas `MostlyFrozenSet` will only discourage people who are not really dedicated. `MostlyFrozenSet` is probably faster. | ||
Note that these are only "shallowly" frozen - that is, if the set contains a mutable object, that object will remain mutable (just as with `Object.freeze`). |
Empty package
Supply chain riskPackage does not contain any code. It may be removed, is name squatting, or the result of a faulty package publish.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
15516
32.58%6
100%95
Infinity%2
-33.33%8
100%0
-100%1
Infinity%+ Added
+ Added