Skip to content

Commit

Permalink
README.
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmorris committed Mar 20, 2023
1 parent e48b8c4 commit 4845166
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 47 deletions.
86 changes: 43 additions & 43 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
},
"homepage": "https://github.com/seanmorris/Weaker#readme",
"dependencies": {
"weakermap": "^0.0.2",
"weakerset": "^0.0.2"
"weakermap": "^0.0.3",
"weakerset": "^0.0.3"
},
"files": [
"LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion weakermap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const wm = new WeakerMap([ ['a', {a:1}], ['b', {b:2}], ['c', {c:3}] ]);

for(const [key, value] of wm)
{
console.log({key, value});
console.log({key, value});
}
// { key: 'a', value: { a: 1 } }
// { key: 'b', value: { b: 2 } }
Expand Down
2 changes: 1 addition & 1 deletion weakerset/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const ws = new WeakerSet([ {a:1}, {b:2}, {c:3} ]);

for(const [entry] of ws)
{
console.log(entry);
console.log(entry);
}
// { a: 1 }
// { b: 2 }
Expand Down

0 comments on commit 4845166

Please sign in to comment.