You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+58Lines changed: 58 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,6 +80,7 @@ The `$`-prefixed keys are called *commands*. The data structure they are "mutati
80
80
*`{$unshift: array}``unshift()` all the items in `array` on the target.
81
81
*`{$splice: array of arrays}` for each item in `arrays` call `splice()` on the target with the parameters provided by the item. ***Note:** The items in the array are applied sequentially, so the order matters. The indices of the target may change during the operation.*
82
82
*`{$set: any}` replace the target entirely.
83
+
*`{$unset: array of strings}` remove the list of keys in `array` from the target object.
83
84
*`{$merge: object}` merge the keys of `object` with the target.
84
85
*`{$apply: function}` passes in the current value to the function and updates it with the new returned value.
0 commit comments