New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

frozen-set

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

frozen-set - npm Package Compare versions

Comparing version

to
1.0.0

index.js

12

package.json
{
"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"
}
}

8

README.md

@@ -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`).