Skip to content

Commit

Permalink
Merge pull request #9 from jarco-develop/remove/console.log
Browse files Browse the repository at this point in the history
remove console.log
  • Loading branch information
prdn authored Oct 17, 2023
2 parents 914e9c6 + ebfe3ff commit 7af8318
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/merge.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ const merge = (target, ...sources) => {
const sourceValue = source[key]

if (Array.isArray(targetValue) && Array.isArray(sourceValue)) {
console.debug(targetValue, sourceValue)
cloneObj[key] = targetValue.map((value, k) => {
if (sourceValue.length <= k) {
return value
Expand Down

0 comments on commit 7af8318

Please sign in to comment.