From 6b44ae2170ee4a04a2f268d8f944415c8b280d7b Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Fri, 21 Feb 2020 14:23:05 +0100 Subject: [PATCH] Remove the unused `thisArg` from `RefSetCache.forEach` Given that this is completely unused, and that a "normal" function call may be a *tiny* bit more efficient, there's no good reason as far as I can tell to keep it. --- src/core/primitives.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/primitives.js b/src/core/primitives.js index 1501d199e..58ce1c54e 100644 --- a/src/core/primitives.js +++ b/src/core/primitives.js @@ -251,9 +251,9 @@ var RefSetCache = (function RefSetCacheClosure() { this.dict[ref.toString()] = this.get(aliasRef); }, - forEach: function RefSetCache_forEach(fn, thisArg) { - for (var i in this.dict) { - fn.call(thisArg, this.dict[i]); + forEach: function RefSetCache_forEach(callback) { + for (const i in this.dict) { + callback(this.dict[i]); } },