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 69e6161 commit ba82ad5Copy full SHA for ba82ad5
README.md
@@ -23,10 +23,22 @@ buffer.get('firstName'); // => 'stefan'
23
buffer.set('firstName', 'Kris');
24
25
buffer.get('firstName'); // => 'Kris'
26
-buffer.set('firstName.content', 'Stefan');
+buffer.get('firstName.content'); // => 'stefan'
27
28
buffer.applyBufferedChanges();
29
30
+buffer.get('firstName'); // => 'Kris'
31
+buffer.get('firstName.content'); // => 'Kris'
32
+
33
34
+buffer.set('firstName', 'Luke');
35
+buffer.get('firstName'); // => 'Luke'
36
37
38
+buffer.discardBufferedChanges();
39
40
41
42
```
43
44
Or you can grab the mixin directly
0 commit comments