From 6909e3e65659d9be12fc9e1d5ea698d9def4465b Mon Sep 17 00:00:00 2001 From: Soar <58918356+soar-beep@users.noreply.github.com> Date: Sun, 15 Dec 2019 19:45:15 -0500 Subject: [PATCH] assert: use for...of Refs: #30960 PR-URL: https://github.com/nodejs/node/pull/30983 Refs: https://github.com/nodejs/node/pull/30960 Reviewed-By: David Carlier Reviewed-By: Trivikram Kamat Reviewed-By: Rich Trott Reviewed-By: Luigi Pinca --- lib/assert.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/assert.js b/lib/assert.js index 4a5dca9b49466a..025e5bedc02e27 100644 --- a/lib/assert.js +++ b/lib/assert.js @@ -831,9 +831,9 @@ assert.ifError = function ifError(err) { tmp2.shift(); // Filter all frames existing in err.stack. let tmp1 = newErr.stack.split('\n'); - for (let i = 0; i < tmp2.length; i++) { + for (const errFrame of tmp2) { // Find the first occurrence of the frame. - const pos = tmp1.indexOf(tmp2[i]); + const pos = tmp1.indexOf(errFrame); if (pos !== -1) { // Only keep new frames. tmp1 = tmp1.slice(0, pos);