Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
tsctx committed Feb 12, 2024
1 parent 337ff62 commit 0962d5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fetch/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -915,7 +915,7 @@ function iteratorMixin (name, object, kInternalIterator, keyIndex = 0, valueInde
`Failed to execute 'forEach' on '${name}': parameter 1 is not of type 'Function'.`
)
}
for (const { 0: key, 1: value } of createIterator(this, 'key+value')) {
for (const { 0: key, 1: value } of makeIterator(this, 'key+value')) {
callbackfn.call(thisArg, value, key, this)
}
}
Expand Down

0 comments on commit 0962d5a

Please sign in to comment.