We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53958e1 commit 0fb25d5Copy full SHA for 0fb25d5
README.md
@@ -2,9 +2,9 @@
2
3
## 😎 Description 🙏
4
5
-Maps a javascript objects to arbitrary create, update and delete functions.
+Maps javascript objects to arbitrary create, update and delete functions.
6
7
-Can be used to sync stateful or stateless components to some other provider of data.
+Can be used to sync stateful or stateless components with some other provider of data.
8
9
## 🚀 Installation 😱
10
@@ -23,7 +23,9 @@ const bar = () => ({
23
delete: (absolute) => console.log("Delete", absolute),
24
});
25
26
-const run = oneWayDataBindingLibraryJs({ "foo.bar": bar });
+const run = oneWayDataBindingLibraryJs({
27
+ "foo.bar": bar,
28
+});
29
30
// Create
31
run(() => ({ foo: { bar: { hello: "world" } } }));
0 commit comments