Skip to content

Commit

Permalink
docs: fix the result of the array merging (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
kricsleo committed Jun 29, 2023
1 parent 3280c63 commit e0e2644
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ defuArrayFn({
- Will concat `array` values (if default property is defined)
```js
console.log(defu({ array: ['b', 'c'] }, { array: ['a'] }))
// => { array: ['a', 'b', 'c']}
// => { array: ['b', 'c', 'a'] }
```

## Type
Expand Down

0 comments on commit e0e2644

Please sign in to comment.