We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cf8c70 commit 17e05afCopy full SHA for 17e05af
README.md
@@ -5,6 +5,18 @@
5
It assumes that the target platform supports JavaScript's `WeakRef` and `FinalizationRegistry`, which are becoming standard in ECMAScript 2021.
6
Attempts to use `WeakReference` or `ReferenceQueue` will throw `ReferenceError`s if they are not supported.
7
8
+## Usage
9
+
10
+Add the following dependency to your project settings:
11
12
+```scala
13
+libraryDependencies += "org.scala-js" %%% "scalajs-weakreferences" % "1.0.0-SNAPSHOT"
14
+```
15
16
+When using a `crossProject`, add the above in `.jsSettings(...)`.
17
18
+You can then use `java.lang.ref.WeakReference` and `java.lang.ref.ReferenceQueue`.
19
20
## License
21
22
`scalajs-weakreferences` is distributed under the [Apache 2.0 license](./LICENSE.txt), like Scala.js itself.
0 commit comments