Skip to content

Commit

Permalink
fix: fixing linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
chanind committed Nov 12, 2020
1 parent adae5d5 commit 759ddd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rewriters/Rewriter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ abstract class Rewriter {
if (response === null || typeof response !== 'object') return response;

// Extract the key
let element = response[key];
const element = response[key];

// Extract the position
// NOTE: We might eventually want to create an array if one is not present at the key
Expand Down

0 comments on commit 759ddd3

Please sign in to comment.