Skip to content

Commit

Permalink
lib: replace var w/ let
Browse files Browse the repository at this point in the history
replace var w/ let in lib/internal/error-serdes.js

PR-URL: #30386
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Anna Henningsen <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Gireesh Punathil <[email protected]>
Reviewed-By: Ruben Bridgewater <[email protected]>
Reviewed-By: Trivikram Kamat <[email protected]>
  • Loading branch information
IAmEddieDean authored and addaleax committed Nov 30, 2019
1 parent 5c40b2f commit b18b056
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/internal/error-serdes.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function TryGetAllProperties(object, target = object) {
function GetConstructors(object) {
const constructors = [];

for (var current = object;
for (let current = object;
current !== null;
current = Object.getPrototypeOf(current)) {
const desc = Object.getOwnPropertyDescriptor(current, 'constructor');
Expand Down Expand Up @@ -82,7 +82,7 @@ function serializeError(error) {
if (typeof error === 'object' &&
ObjectPrototype.toString(error) === '[object Error]') {
const constructors = GetConstructors(error);
for (var i = 0; i < constructors.length; i++) {
for (let i = 0; i < constructors.length; i++) {
const name = GetName(constructors[i]);
if (errorConstructorNames.has(name)) {
const serialized = serialize({
Expand Down

0 comments on commit b18b056

Please sign in to comment.