initial update

This commit is contained in:
jackbeeby
2025-05-15 13:32:55 +10:00
commit 7b07a49fbe
4412 changed files with 909535 additions and 0 deletions

9
node_modules/@wry/caches/README.md generated vendored Normal file
View File

@@ -0,0 +1,9 @@
# @wry/caches
Various cache implementations, including but not limited to
* `StrongCache`: A standard `Map`-like cache with a least-recently-used (LRU)
eviction policy and a callback hook for removed entries.
* `WeakCache`: Another LRU cache that holds its keys only weakly, so entries can be removed
once no longer retained elsewhere in the application.