We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adae5d5 commit 759ddd3Copy full SHA for 759ddd3
src/rewriters/Rewriter.ts
@@ -96,7 +96,7 @@ abstract class Rewriter {
96
if (response === null || typeof response !== 'object') return response;
97
98
// Extract the key
99
- let element = response[key];
+ const element = response[key];
100
101
// Extract the position
102
// NOTE: We might eventually want to create an array if one is not present at the key
0 commit comments