necessary 11.0.48 → 11.0.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -672,7 +672,7 @@ patch([1, 2, 0, -1, -2], 4, (element, index) => {
|
|
|
672
672
|
}); // the first array argument becomes [1, 2, 0, -1, -2, 4]
|
|
673
673
|
```
|
|
674
674
|
|
|
675
|
-
* The `augment()` function
|
|
675
|
+
* The `augment()` function appends each of the elements of the second array argument to the first array argument whenever the test callback returns a truthy value:
|
|
676
676
|
|
|
677
677
|
```
|
|
678
678
|
augment([1, 2, 3], [-1, 4, -2, 5], (element, index) => {
|
package/package.json
CHANGED