We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57a9efa commit f00fb28Copy full SHA for f00fb28
HISTORY.md
@@ -1,4 +1,8 @@
1
-## 1.0.0
+## 2.0.0
2
+
3
+* Simplify API around deferred actions.
4
5
+## 1.0.1
6
7
* Fork from `rescript-react-update`.
8
* Re-design and extend the API.
src/Internal_Map.res
@@ -1,3 +1,6 @@
+// Polyfill for Map taken from RescriptCore
+// Ref. https://github.com/rescript-association/rescript-core/blob/main/src/Core__Map.res
type t<'k, 'v> = Js.Map.t<'k, 'v>
@new external make: unit => t<'k, 'v> = "Map"
0 commit comments